Skip to content
Snippets Groups Projects
Commit dd755c8e authored by Diego Pasqualin's avatar Diego Pasqualin
Browse files

Fix missing quotes when testing for OUTPUTDIR existance

parent 33f54181
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ OUTPUT="$OUTPUTDIR/$BASENAME-$DNAME-$REPO-i386-$DATE.iso" ...@@ -20,7 +20,7 @@ OUTPUT="$OUTPUTDIR/$BASENAME-$DNAME-$REPO-i386-$DATE.iso"
# Jenkins like to create directory names with spaces... # Jenkins like to create directory names with spaces...
cd "$PREFIX" cd "$PREFIX"
test ! -d $OUTPUTDIR && mkdir -p $OUTPUTDIR test ! -d "$OUTPUTDIR" && mkdir -p "$OUTPUTDIR"
sudo ./create-iso.sh --all "iso/$ISO" \ sudo ./create-iso.sh --all "iso/$ISO" \
--dist "$DIST" \ --dist "$DIST" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment