Compare commits

..

No commits in common. "a7b30a4bf10ce4aeed9aece902d0b82251b47966" and "42a96b909be32636a69034ca58d0f6e70e6517db" have entirely different histories.

View File

@ -9,9 +9,9 @@ dockerCommandRun()
dockerCommandRunInstallUser "$command"
elif [[ $CFG_DOCKER_INSTALL_TYPE == "rooted" ]]; then
if [[ $type == "sudo" ]]; then
sudo bash -c "$command"
sudo $command
else
bash -c "$command"
$command
fi
fi
}