summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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