Skip to content

Commit fa9b3d1

Browse files
authored
Merge pull request #9 from ssipos90/master
Fix shebang line
2 parents dc86bb7 + 745d440 commit fa9b3d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/run-standalone.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
trapIt () { "$@"& pid="$!"; trap "kill -INT $pid" INT TERM; while kill -0 $pid > /dev/null 2>&1; do wait $pid; ec="$?"; done; exit $ec;};
44

55
ARGS='--port 80'
6-
trapIt /ppm/vendor/bin/ppm start --ansi $ARGS $@
6+
trapIt /ppm/vendor/bin/ppm start --ansi $ARGS $@

0 commit comments

Comments
 (0)