Skip to content

Commit

Permalink
Fixed version check in make-distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
JanWielemaker committed Jan 31, 2024
1 parent cb6d77e commit ceb12d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/make-distribution
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ build_PPAs()
}

is_clean_release()
{ if [ ${version} != V$(git describe) ]; then
{ if [ V${version} != $(git describe) ]; then
echo "ERROR: Git tag is inconsistent with release"
return 1
fi
Expand Down

0 comments on commit ceb12d2

Please sign in to comment.