dockerTools: Properly quote a shell variable

This commit is contained in:
Utku Demir 2020-06-21 12:11:56 +12:00
parent f1d7a09146
commit 4bff5b7f3d
No known key found for this signature in database
GPG key ID: F3F8629C3E0BF60B

View file

@ -333,7 +333,7 @@ rec {
chmod ug+w layer
if [[ -n $extraCommands ]]; then
if [[ -n "$extraCommands" ]]; then
(cd layer; eval "$extraCommands")
fi