From 300935c83e4bf023e50a29b1a6ad5701711dcc5d Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Sun, 26 Jan 2020 09:27:36 +0400 Subject: [PATCH] bug --- dk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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"'