summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-11-19 12:41:50 -0500
committerOwen Jacobson <owen@grimoire.ca>2024-11-19 12:41:50 -0500
commit9a2efe0545e1e695d45f8c7577c3899a6a648e53 (patch)
treea0ef5a430639a00e2710a4cb2c61a11069fc2888 /tools
parent496d14574a91dae10b00a37eb12d666df8e0622b (diff)
Patch out --host again; npm run format
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run b/tools/run
index 8c450cf..7f43a19 100755
--- a/tools/run
+++ b/tools/run
@@ -5,7 +5,7 @@
if [ -z ${PILCROW_DEV+x} ]; then
cargo run -- "$@"
else
- npm run dev -- --host 192.168.68.57 & PIDS[0]=$!
+ npm run dev -- & PIDS[0]=$!
cargo run -- "$@" & PIDS[1]=$!
trap "kill ${PIDS[*]}" SIGINT