Fix space separation for parameters

This commit is contained in:
Mario Romero 2023-10-14 17:33:06 -03:00
parent 3409a4f432
commit 5f9294a653
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 562 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 744 KiB

After

Width:  |  Height:  |  Size: 131 B

View File

@ -129,10 +129,10 @@ function set-common-parameters () {
$global:IMAGE = "git.1159.cl/mario1159/$SELECTED_STACK-$EXECMODE"
if ($attach) {
$global:PARAMS += "-it --rm"
$global:PARAMS += " -it --rm"
$global:COMMAND = "bash"
} else {
$global:PARAMS += "-d"
$global:PARAMS += " -d"
$global:COMMAND = ""
}