Skip to content

Commit

Permalink
fixed steamwebhelper toggle (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
frostworx committed Apr 23, 2022
1 parent 95d908a commit 62feda0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions steamtinkerlaunch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
PREFIX="/usr"
PROGNAME="SteamTinkerLaunch"
NICEPROGNAME="Steam Tinker Launch"
PROGVERS="v9.3.20220422"
PROGVERS="v9.3.20220423"
PROGCMD="${0##*/}"
SHOSTL="stl"
GHURL="https://github.com"
Expand Down Expand Up @@ -10859,9 +10859,10 @@ function StateSteamWebHelper {

while read -r swhpid; do
if [ -n "$swhpid" ] && [ "$swhpid" -eq "$swhpid" ]; then
writelog "INFO" "${FUNCNAME[0]} - Executing 'kill \"$SIGVAL\" \"$swhpid\"' to '$1' the $SWH"
kill "$SIGVAL" "$swhpid"
fi
done <<< "$("$PGREP" "$SWH" | grep -v "$("$PGREP" "${SWH}\.")")"
done <<< "$("$PGREP" "$SWH")"
fi
}

Expand Down

0 comments on commit 62feda0

Please sign in to comment.