Skip to content

Commit

Permalink
tests: Fix stray ")" in test script py2lcov.sh (#340)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
hartwork authored Dec 16, 2024
1 parent 12d5857 commit 34f05f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/py2lcov/py2lcov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fi
git -C . rev-parse > /dev/null 2>&1
if [ 0 == $? ] ; then
# this is git
VERSION="--version-script ${SCRIPT_DIR}/gitversion${MD5_OPT)}"
VERSION="--version-script ${SCRIPT_DIR}/gitversion${MD5_OPT}"
ANNOTATE="--annotate-script ${SCRIPT_DIR}/gitblame.pm,--cache,my_cache"
else
VERSION="--version-script ${SCRIPT_DIR}/P4version.pm,--local-edit${MD5_OPT}"
Expand Down

0 comments on commit 34f05f5

Please sign in to comment.