diff options
author | Marc Coquand <marc@mccd.space> | 2024-06-10 08:59:55 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-06-10 08:59:55 -0500 |
commit | 80c5317f3c7fdba007297582c54e366b4781e706 (patch) | |
tree | 0f964c059b4e84f87609471efedca6a97348fbd6 | |
parent | 2488f9d9b5097c68b24df0fbfad2d659bc094129 (diff) | |
download | stitch-80c5317f3c7fdba007297582c54e366b4781e706.tar.gz stitch-80c5317f3c7fdba007297582c54e366b4781e706.tar.bz2 stitch-80c5317f3c7fdba007297582c54e366b4781e706.zip |
Bugfix: Grep CMD was incorrect
Diffstat (limited to '')
-rw-r--r-- | lib/grep.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/grep.ml b/lib/grep.ml index 7ec664e..7b19a36 100644 --- a/lib/grep.ml +++ b/lib/grep.ml @@ -2,7 +2,7 @@ let execution_directory = Sys.getenv_opt "STITCH_DIRECTORY" |> Option.value ~default:"/anywhere" -let grep_cmd = Sys.getenv_opt "STICH_GREP_CMD" |> Option.value ~default:"grep" +let grep_cmd = Sys.getenv_opt "STITCH_GREP_CMD" |> Option.value ~default:"grep" let tag_pattern = Sys.getenv_opt "STITCH_TAG_PATTERN" |> Option.value ~default:"\\:[a-z-]+\\:" |