From: xf0r3m Date: Tue, 8 Aug 2023 06:43:42 +0000 (+0200) Subject: Poprawienie błedu uniemożliwiającego uruchomienie powłoki przez skrypt odbioru CLI... X-Git-Url: https://gitweb.morketsmerke.org/?a=commitdiff_plain;h=f83ff55d5f6722efab9804d673ac786dc50e02fc;p=idle.git Poprawienie błedu uniemożliwiającego uruchomienie powłoki przez skrypt odbioru CLI - idle-clis --- diff --git a/idle-clis b/idle-clis index 562ad48..b2d8274 100755 --- a/idle-clis +++ b/idle-clis @@ -42,7 +42,7 @@ if [ $# -gt 0 ]; then shift; case $command in "list-distros") idle-list-containers; break;; - "shell") idle-exec-shell $2; exit;; + "shell") idle-exec-shell $1; exit;; "check-command") containerName=$1; doInContainers $containerName ckcmd $@;