Skip to content

Commit

Permalink
Add # to the list of special shell characters
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate committed Mar 2, 2024
1 parent 212967b commit 9f4aa36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build_test_common.ml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ let is_special_shell_char = function
| '^'|'%' when Sys.win32 -> true
| ' '|'$'|'\''|'"'|'`'
| '<'|'>'|'('|')'|'['|']'|'{'|'}'
| ';'|'!'|'&'|'|'|'~'|'*'|'?' -> true
| ';'|'!'|'&'|'|'|'~'|'*'|'?'|'#' -> true
| _ -> false
let has_special_shell_char str =
Expand Down

0 comments on commit 9f4aa36

Please sign in to comment.