From ff5cdc30193ba69944f6772f213e63ea00678861 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 26 Aug 2020 09:23:56 +0200 Subject: [ ... print count-only ...] -> [ :len [ ... find ... ] ] Using 'print count-only' always prints a number to terminal, even if the value is evaluated in a condition or assigned to a variable. This can be quite annoying. Behavior will not chance (SUP-25503), so replacing the code... --- capsman-rolling-upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'capsman-rolling-upgrade') diff --git a/capsman-rolling-upgrade b/capsman-rolling-upgrade index 698ff93..61552f5 100644 --- a/capsman-rolling-upgrade +++ b/capsman-rolling-upgrade @@ -14,7 +14,7 @@ $ScriptLock "capsman-rolling-upgrade"; :local InstalledVersion [ / system package update get installed-version ]; -:local RemoteCapCount [ /caps-man remote-cap print count-only ]; +:local RemoteCapCount [ :len [ / caps-man remote-cap find ] ]; :if ($RemoteCapCount > 0) do={ :local Delay (600 / $RemoteCapCount); :if ($Delay > 120) do={ :set Delay 120; } -- cgit v1.2.3-54-g00ecf