mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
check-routeros-update: accept lower and upper case characters
This commit is contained in:
parent
83a8743879
commit
bcf57f0adb
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@
|
|||
|
||||
:if ([ $ScriptFromTerminal "check-routeros-update" ] = true) do={
|
||||
:put ("Do you want to install RouterOS version " . $Update->"latest-version" . "? [y/N]");
|
||||
:if ([ :terminal inkey timeout=60 ] = 121) do={
|
||||
:if (([ :terminal inkey timeout=60 ] % 32) = 25) do={
|
||||
$DoUpdate;
|
||||
} else={
|
||||
:put "Canceled...";
|
||||
|
|
Loading…
Reference in a new issue