Skip to content
Closed
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
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ if [[ ! -d "$XMAKE_DIR" ]] || [[ ! -x "$xmake" ]]; then
log-8601-local "Downloading and building xmake, this might take a while..."
if commands_exist xz; then
pack=xz
elif command_exist gzip; then
elif commands_exist gzip; then
pack=gz
else
msg-error "No decompression binary found, please install xz or gzip to continue"
Expand Down Expand Up @@ -263,4 +263,4 @@ do
log-8601-local "Building for $arch..."
"$xmake" f -a $arch -m $PROFILE --include_logging=$WITH_LOGGING
"$xmake" "$@"
done
done