You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the install script to allow remote installations via curl and wget.
curl
curl -sL https://raw.githubusercontent.com/arcticicestudio/nord-konsole/develop/install.sh | sh -s -- <ARG1><ARG2>
wget
wget --no-check-certificate https://raw.githubusercontent.com/arcticicestudio/nord-konsole/develop/install.sh | sh -s -- <ARG1><ARG2>
Arguments can be passed via the -s flag which is also supported by bash.
The two dashes -- after the flag must be provided to avoid the shell to interpret the following short options as addional parameters.
The text was updated successfully, but these errors were encountered:
Change the install script to allow remote installations via curl and wget.
curl
wget
Arguments can be passed via the
-s
flag which is also supported bybash
.The two dashes
--
after the flag must be provided to avoid the shell to interpret the following short options as addional parameters.The text was updated successfully, but these errors were encountered: