[eos-bash-shared] only shellcheck related changes

This commit is contained in:
manuel
2026-08-14 19:22:42 +03:00
parent 2e4e358acf
commit 296a50b028
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ AllMirrors() { grep "^Server[ ]*=[ ]*https://" $ml | sed 's|^Server[ ]*=[ ]*\
Test() {
local url="$1"
/bin/curl --silent --fail --connect-timeout $timeout "$url" >/dev/null # download the 'state' file from a mirror
/bin/curl --silent --fail --connect-timeout "$timeout" "$url" >/dev/null # download the 'state' file from a mirror
retval=$?
if [ $retval -eq 0 ] ; then
[ "$verbose" = "yes" ] && echo "==> Mirror = $url" >&2
+1 -1
View File
@@ -55,7 +55,7 @@ yad_missing_check() {
local timeout="$2"
[ "$timeout" ] || timeout=10000
local msg="Some operations require yad installed."
eos_notification "$ICO_INFO" normal $timeout "$app" "Notification from $app" "$msg"
eos_notification "$ICO_INFO" normal "$timeout" "$app" "Notification from $app" "$msg"
fi
fi
}