Skip to content

Commit 9a7a674

Browse files
committed
Use helper template system for bash as well
1 parent 7e7c4c1 commit 9a7a674

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/Misc/layoutroot/run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
99
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
1010
done
1111
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
12-
12+
cp run-helper.sh.template run-helper.sh
1313
# run the helper process which keep the listener alive
1414
while :;
1515
do
16-
"$DIR"/bin/run-helper.sh $*
16+
"$DIR"/run-helper.sh $*
1717
returnCode=$?
1818
if [[ $returnCode == 1 ]]; then
1919
echo "Restarting runner..."

0 commit comments

Comments
 (0)