Skip to content

Commit fceea2e

Browse files
authored
fix(services): Add quotes around $PRJ_ROOT to allow for paths with spaces (#294)
1 parent f54745f commit fceea2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/services.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ let
5858
exit 1
5959
fi
6060
mkdir -p "$PRJ_DATA_DIR/pids/"
61-
${pkgs.honcho}/bin/honcho start -f ${procfile} -d $PRJ_ROOT &
61+
${pkgs.honcho}/bin/honcho start -f ${procfile} -d "$PRJ_ROOT" &
6262
pid=$!
6363
echo $pid > "$PRJ_DATA_DIR/pids/${gName}.pid"
6464
on_stop() {

0 commit comments

Comments
 (0)