Skip to content

Commit

Permalink
Fixed CI-E2E-tests tool-version (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfoidl authored Jun 14, 2020
1 parent d860ad1 commit 3fc197e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .azure/pipelines/jobs/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
export VersionPatch="${BASH_REMATCH[3]}"
export VersionSuffix="${BASH_REMATCH[5]}"
ToolVersion="$VersionMajor.$VersionMinor.$VersionPatch-$VersionSuffix"
ToolVersion="$VersionMajor.$VersionMinor.$VersionPatch"
if [[ -n $VersionSuffix ]]; then
ToolVersion="$ToolVersion-$VersionSuffix"
fi
fi
fi
Expand Down

0 comments on commit 3fc197e

Please sign in to comment.