Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
prow.sh: fix "on-master" prow jobs
The recent introduction of version_to_git broke Prow jobs with
CSI_PROW_KUBERNETES_VERSION=latest because that version was first
converted to "master" and then once more to "vmaster". The second call
must be idempotent because "master" is already a branch name.
  • Loading branch information
pohly committed Feb 1, 2021
commit 3e811d6c92b32bdd0eaf9fa370ff220f2b006271
2 changes: 1 addition & 1 deletion prow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ version_to_git () {
version="$1"
shift
case "$version" in
latest) echo "master";;
latest|master) echo "master";;
release-*) echo "$version";;
*) echo "v$version";;
esac
Expand Down