Skip to content

Commit

Permalink
Fix local branch ref in validation script
Browse files Browse the repository at this point in the history
  • Loading branch information
noseglasses authored Sep 26, 2021
1 parent 5841cb4 commit 2c07493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/validate_package_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function validate_package_version() {

git_ref=$1
echo "Git ref: ${git_ref}"
input_branch="origin/${git_ref}"
input_branch="${git_ref}"
echo "Input branch: ${input_branch}"
branch_head_commit_id=$(git rev-parse ${input_branch})
echo "Head commit: ${branch_head_commit_id}"
Expand Down

0 comments on commit 2c07493

Please sign in to comment.