summary refs log tree commit diff
path: root/demo/stop.sh
diff options
context:
space:
mode:
Diffstat (limited to 'demo/stop.sh')
-rwxr-xr-xdemo/stop.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/stop.sh b/demo/stop.sh
index f9dddc5914..c97e4b8d00 100755
--- a/demo/stop.sh
+++ b/demo/stop.sh
@@ -8,7 +8,7 @@ for pid_file in $FILES; do
     pid=$(cat "$pid_file")
     if [[ $pid ]]; then
         echo "Killing $pid_file with $pid"
-        kill $pid
+        kill "$pid"
     fi
 done