Skip to content

Commit

Permalink
Merge branch 'master' into feat/less-globalVars
Browse files Browse the repository at this point in the history
  • Loading branch information
gin-lsl authored Aug 6, 2024
2 parents ab4a961 + 2a9d2b5 commit 37211de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/mako/src/generate/chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ impl Chunk {
.components()
.filter(|c| !matches!(c, Component::RootDir | Component::CurDir))
.map(|c| match c {
Component::ParentDir => "_pd_".to_string(),
Component::Prefix(_) => "_ps_".to_string(),
Component::ParentDir => "pd_".to_string(),
Component::Prefix(_) => "ps_".to_string(),
Component::RootDir => "".to_string(),
Component::CurDir => "".to_string(),
Component::Normal(seg) => {
Expand Down
2 changes: 2 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env -S just --justfile
set windows-shell := ["powershell"]
set shell := ["bash", "-cu"]

_default:
just --list -u
Expand Down

0 comments on commit 37211de

Please sign in to comment.