From 3658f0a307764210e89a90020fca94b2bb91d870 Mon Sep 17 00:00:00 2001 From: Riku Voipio Date: Mon, 7 Sep 2015 16:24:19 +0300 Subject: make template file optional --- jenkins-makesources | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins-makesources b/jenkins-makesources index 8482c5b..bd49794 100755 --- a/jenkins-makesources +++ b/jenkins-makesources @@ -22,9 +22,9 @@ set -e -if [ -r $1 ]; +if [ -r "$1" ]; then - source $1 + source "$1" fi base_version=${base_version:-0} -- cgit v1.2.3