summaryrefslogtreecommitdiff
path: root/tools/run
diff options
context:
space:
mode:
Diffstat (limited to 'tools/run')
-rwxr-xr-xtools/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run b/tools/run
index 562a94d..ac42e93 100755
--- a/tools/run
+++ b/tools/run
@@ -6,7 +6,7 @@ if [ -z ${HI_DEV+x} ]; then
tools/build-ui
cargo run -- "$@"
else
- npm run dev & PIDS[0]=$!
+ npm run dev -- --host 192.168.68.57 & PIDS[0]=$!
cargo run -- "$@" & PIDS[1]=$!
trap "kill ${PIDS[*]}" SIGINT