Skip to content

Commit

Permalink
Merge pull request #25 from judovana/fixedCondition
Browse files Browse the repository at this point in the history
Added missing x to diabling condition
  • Loading branch information
judovana authored Mar 3, 2024
2 parents 088d1f2 + d98d274 commit c3ae9f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ $gc=$one_result"
jtrTarball=churn${NOCOMP}${STAMP}.jtr.xml.tar.gz
resultsTapFile=churn${NOCOMP}${STAMP}.tap
set +x
if [ "x$CHURN_JUNIT" == "" -o "x$CHURN_JUNIT" == "true" ] ; then
if [ "x$CHURN_JUNIT" == "x" -o "x$CHURN_JUNIT" == "xtrue" ] ; then
junitResults
fi
if [ "x$CHURN_TAP" == "" -o "x$CHURN_TAP" == "true" ] ; then
if [ "x$CHURN_TAP" == "x" -o "x$CHURN_TAP" == "xtrue" ] ; then
tapResults
fi
set -x
Expand Down

0 comments on commit c3ae9f5

Please sign in to comment.