From 1015ccf7355e59581d471230e62efeaa311a0a5e Mon Sep 17 00:00:00 2001 From: Diego Pasqualin <dpasqualin@c3sl.ufpr.br> Date: Wed, 5 Jun 2013 11:48:29 -0300 Subject: [PATCH] create-iso-jenkins.sh: Change output dir name to "nobackup" We have in our lab a backup system which was getting full with tons of isos generated by the create-iso program. This backup system would not backup files inside a directory called "nobackup", and that is why we are changing the output directory name to "nobackup". Signed-off-by: Diego Pasqualin <dpasqualin@c3sl.ufpr.br> --- create-iso-jenkins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-iso-jenkins.sh b/create-iso-jenkins.sh index cc02222..5def50b 100755 --- a/create-iso-jenkins.sh +++ b/create-iso-jenkins.sh @@ -14,7 +14,7 @@ BASENAME="$5" DFOLDER=$(dirname $DIST) DNAME=$(basename $DIST) DATE=$(date +%Y%m%d) -OUTPUTDIR="$PREFIX/output" +OUTPUTDIR="$PREFIX/nobackup" OUTPUT="$OUTPUTDIR/$BASENAME-$DNAME-$REPO-i386-$DATE.iso" # Jenkins like to create directory names with spaces... -- GitLab