Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
removed release flag
  • Loading branch information
peazip authored Jan 1, 2025
1 parent 6177d83 commit 016c290
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function priv_lazbuild
debian | ubuntu)
printf '\x1b[32mInstall Lazarus.\x1b[0m\n' 1>&2
sudo apt-get update
sudo apt-get install -y lazarus{-ide-qt6,}
sudo apt-get install -y lazarus{-ide-qt5,}
;;
esac
fi
Expand Down Expand Up @@ -52,7 +52,7 @@ function priv_lazbuild
declare -A VAR=(
[out]=$(mktemp)
)
if (lazbuild --recursive --no-write-project --widgetset='qt6' --build-all "${REPLY}" > "${VAR[out]}"); then
if (lazbuild --recursive --no-write-project --widgetset='qt5' --build-all "${REPLY}" > "${VAR[out]}"); then
printf '\x1b[32m\t[%s]\tbuild project\t%s\x1b[0m\n' "${?}" "${REPLY}"
grep --color='always' 'Linking' "${VAR[out]}"
else
Expand Down

0 comments on commit 016c290

Please sign in to comment.