mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-16 06:20:34 +00:00
Don't catch EXIT signal
It's not only pointless, but causes issues when scripts are being run in another set -e container.
This commit is contained in:
2
run.sh
2
run.sh
@@ -13,7 +13,7 @@ fi
|
||||
ASF_ARGS+=" $*"
|
||||
|
||||
# Kill underlying ASF process on shell process exit
|
||||
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
||||
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM
|
||||
|
||||
if ! hash dotnet 2>/dev/null; then
|
||||
echo "ERROR: dotnet CLI tools are not installed!"
|
||||
|
||||
Reference in New Issue
Block a user