Skip to content

Commit 763c266

Browse files
authored
Replace special characters in paths: handle tilde and equals signs (#203)
Potential issue on Windows...
1 parent ed702a6 commit 763c266

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/stage4/src/executor.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,8 @@ pub async fn prep(
361361
.as_str()
362362
.replace("*", "_star_")
363363
.replace("^", "_hat_")
364+
.replace("~", "_tilde_")
365+
.replace("=", "_eq_")
364366
+ executor_cmd
365367
.include_tags
366368
.iter()

0 commit comments

Comments
 (0)