Skip to content

Commit

Permalink
make_appimage.sh: work around error with appimageupdatetool
Browse files Browse the repository at this point in the history
  • Loading branch information
cbjeukendrup committed Sep 19, 2024
1 parent ad14ddc commit 3997e2f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion buildscripts/ci/linux/tools/make_appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ if [[ ! -d $BUILD_TOOLS/appimageupdatetool ]]; then
fi
if [[ "${UPDATE_INFORMATION}" ]]; then
export PATH="$BUILD_TOOLS/appimageupdatetool:$PATH"
appimageupdatetool --version

# `appimageupdatetool`'s `AppRun` script gets confused when called via a symlink.
# Resolve the symlink here to avoid this issue.
$(readlink -f "$(which appimageupdatetool)") --version
fi

##########################################################################
Expand Down

0 comments on commit 3997e2f

Please sign in to comment.