stitch
Note taking for messy minimalists
git clone git://mccd.space/stitchcommit 80c5317f3c7fdba007297582c54e366b4781e706
parent 2488f9d9b5097c68b24df0fbfad2d659bc094129
Author: Marc Coquand <marc@mccd.space>
Date: Mon, 10 Jun 2024 08:59:55 -0500
Bugfix: Grep CMD was incorrect
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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-]+\\:"