Skip to content

Commit 34f05f5

Browse files
authored
tests: Fix stray ")" in test script py2lcov.sh (#340)
Symptom was: > # sudo make install PREFIX=/usr CFG_DIR=/etc > [..] > ./py2lcov.sh: line 100: --version-script ${SCRIPT_DIR}/gitversion${MD5_OPT)}: bad substitution > [..] ^ Regression from commit 747a891 Signed-off-by: Sebastian Pipping <[email protected]>
1 parent 12d5857 commit 34f05f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/py2lcov/py2lcov.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ fi
9797
git -C . rev-parse > /dev/null 2>&1
9898
if [ 0 == $? ] ; then
9999
# this is git
100-
VERSION="--version-script ${SCRIPT_DIR}/gitversion${MD5_OPT)}"
100+
VERSION="--version-script ${SCRIPT_DIR}/gitversion${MD5_OPT}"
101101
ANNOTATE="--annotate-script ${SCRIPT_DIR}/gitblame.pm,--cache,my_cache"
102102
else
103103
VERSION="--version-script ${SCRIPT_DIR}/P4version.pm,--local-edit${MD5_OPT}"

0 commit comments

Comments
 (0)