Skip to content

Commit

Permalink
CI/Appimage: Suppress error when no tags are present
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastRar committed Dec 19, 2024
1 parent 34c9590 commit 353aef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/linux/appimage-qt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ GIT_VERSION=$(git tag --points-at HEAD)

if [[ "${GIT_VERSION}" == "" ]]; then
# In the odd event that we run this script before the release gets tagged.
GIT_VERSION=$(git describe --tags)
GIT_VERSION=$(git describe --tags || true)
if [[ "${GIT_VERSION}" == "" ]]; then
GIT_VERSION=$(git rev-parse HEAD)
fi
Expand Down

0 comments on commit 353aef9

Please sign in to comment.