Skip to content

Commit

Permalink
build: add release build option
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreCostaaa committed Feb 24, 2025
1 parent da81ee2 commit a2b2162
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions usr/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
function usage {
echo "$0 [OPTIONS]"
echo " -c Clean"
echo " -d Debug build"
echo " -r Release build"
echo " -v Verbose"
echo " -s Single core"
echo " -h Print this help"
Expand Down Expand Up @@ -44,13 +44,13 @@ debug=y
verbose=n
singlecore=n
while getopts cdhvs option
while getopts crhvs option
do
case "${option}"
in
c) clean=y;;
d) debug=y;;
v) verbose=y;;
r) debug=n;;
v) verbose=y;;
s) singlecore=y;;
h) usage && exit 1;;
esac
Expand Down

0 comments on commit a2b2162

Please sign in to comment.