Skip to content

Commit bdaca39

Browse files
committed
issue #63 - autogen.sh should use . (dot) instead of bash's source for those who don't use bash
1 parent 348902a commit bdaca39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autogen.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ topdir=$(dirname "$0")
66
cd "$topdir"
77

88
CURRENT_VERSION_FILE=./build/current-version
9-
if [ ! -f $CURRENT_VERSION_FILE ] # don't ruin file that might come from build-git-rpm.sh
9+
if [ ! -f $CURRENT_VERSION_FILE ] # don't ruin file that might come from build-rpm.sh
1010
then
11-
source ./build/versioning.sh
11+
. ./build/versioning.sh
1212
echo ${VERSION}-${VER_GIT} > $CURRENT_VERSION_FILE
1313
echo $GIT_REF >> $CURRENT_VERSION_FILE
1414
fi

0 commit comments

Comments
 (0)