Fixed these issues too, surpressed the unused argument since those are passed externally
This commit is contained in:
parent
55488c8338
commit
6015d16518
|
@ -60,9 +60,12 @@ writeShellApplication
|
||||||
|
|
||||||
send_steam_url()
|
send_steam_url()
|
||||||
{
|
{
|
||||||
local command="$1"
|
local command
|
||||||
local arg="$2"
|
command="$1"
|
||||||
local encoded=$(urlencode "$arg")
|
local arg
|
||||||
|
arg="$2"
|
||||||
|
local encoded
|
||||||
|
encoded=$(urlencode "$arg")
|
||||||
if pgrep -x "steam" > /dev/null; then
|
if pgrep -x "steam" > /dev/null; then
|
||||||
# TODO use -ifrunning and check return value - if there was a steam process and it returns -1, the message wasn't sent
|
# TODO use -ifrunning and check return value - if there was a steam process and it returns -1, the message wasn't sent
|
||||||
# need to retry until either steam process is gone or -ifrunning returns 0, or timeout i guess
|
# need to retry until either steam process is gone or -ifrunning returns 0, or timeout i guess
|
||||||
|
@ -83,7 +86,9 @@ writeShellApplication
|
||||||
{
|
{
|
||||||
declare -i ret
|
declare -i ret
|
||||||
# NOTE: these values are ABI, since they are sent to the Steam client
|
# NOTE: these values are ABI, since they are sent to the Steam client
|
||||||
|
# shellcheck disable=SC2034
|
||||||
readonly FSCK_ERROR=1
|
readonly FSCK_ERROR=1
|
||||||
|
# shellcheck disable=SC2034
|
||||||
readonly MOUNT_ERROR=2
|
readonly MOUNT_ERROR=2
|
||||||
|
|
||||||
# Get info for this drive: $ID_FS_LABEL, and $ID_FS_TYPE
|
# Get info for this drive: $ID_FS_LABEL, and $ID_FS_TYPE
|
||||||
|
|
Loading…
Reference in a new issue