diff --git a/dk b/dk index ca504fd..374017a 100755 --- a/dk +++ b/dk @@ -1284,11 +1284,13 @@ function default_local_composer() { # lancement direct case "$1" in rootshell|rshell|rootbash|rbash) + shift # ewarn parce qu'on est pas root dans ce shell contrairement à ce qui est demandé ewarn "Lancement d'un shell utilisateur alors qu'un shell root est demandé" bash "$@" ;; usershell|shell|userbash|bash) + shift estep "Lancement d'un shell utilisateur" bash "$@" ;; @@ -1312,12 +1314,12 @@ function default_docker_composer() { setx projdir=pwd case "$1" in rootshell|rshell|rootbash|rbash) - actualcmd='eval "bash $args"' shift + actualcmd='eval "bash $args"' ;; usershell|shell|userbash|bash) - actualcmd='eval "su-exec \"$user\" bash $args"' shift + actualcmd='eval "su-exec \"$user\" bash $args"' ;; *) actualcmd='eval "su-exec \"$user\" \"$composer\" $args"'