mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
25 lines
891 B
Bash
Executable File
25 lines
891 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Change directory to the script root directory
|
|
# https://stackoverflow.com/questions/59895/getting-the-source-directory-of-a-bash-script-from-within
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
SOURCE="$(readlink "$SOURCE")"
|
|
[[ $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
|
|
done
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
cp -f "$DIR"/run-helper.sh.template "$DIR"/run-helper.sh
|
|
# run the helper process which keep the listener alive
|
|
while :;
|
|
do
|
|
"$DIR"/run-helper.sh $*
|
|
returnCode=$?
|
|
if [[ $returnCode -eq 2 ]]; then
|
|
echo "Restarting runner..."
|
|
else
|
|
echo "Exiting runner..."
|
|
exit 0
|
|
fi
|
|
done
|