Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganised prepare scripts for tests #2070

Merged
merged 7 commits into from
Dec 20, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed build errors
  • Loading branch information
oleg68 committed Dec 14, 2024
commit 14411babc8338da1c9f6447826a9fdf7c338c204
30 changes: 15 additions & 15 deletions build-scripts/for-linux/prepare-parse-prms.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ INSTALL_TESTS=notests

# parse parameters
while [[ $# -gt 0 ]]; do
case $1 in
wx30 | wx32)
WX_VER=$1
;;
tests | notests)
INSTALL_TESTS=$1
;;
"")
;;
*)
echo "Unknown parameter $1" >&2
echo "Usage: $(basename $0) [wx30 | wx32] [tests | notests]"
exit 1
;;
esac
if [[ -n "$1" ]]; then
case $1 in
wx30 | wx32)
WX_VER=$1
;;
tests | notests)
INSTALL_TESTS=$1
;;
*)
echo "Unknown parameter $1" >&2
echo "Usage: $(basename $0) [wx30 | wx32] [tests | notests]"
exit 1
;;
esac
fi
shift # past a parameter
done
Loading