vxOpenLibm - v1.0.0-dev6 : enable verbose by default during uninstall step

*update*
> [scripts]
  | [uninstall] change `--verbose` to `--quiet` flag
  | [uninstall] force enable verbose by default
This commit is contained in:
YannMagnin 2023-12-03 16:50:48 +01:00
parent f7ab397b82
commit 866f02db52
No known key found for this signature in database
GPG Key ID: D82629D933EADC59
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# This cmake file will be dropped at the root of the openlibm repository
# folder and need to be the more generic as possible to support further update
# of the original project
# folder and need to be the more generic as possible to support further
# update of the original project
cmake_minimum_required(VERSION 3.5)
## fetch source files

View File

@ -13,7 +13,7 @@ Usage: $0 [options...]
Options:
-h, --help display this help
-y, --yes do not display validation step
-v, --verbose display more information during operations
--quiet do not display information during operations
Notes:
This project is a dependency of "sh-elf-vhex" compiler, manual
@ -26,13 +26,13 @@ EOF
# Parse arguments
#---
verbose=false
verbose=true
skip_input=false
for arg; do
case "$arg" in
-h | --help) help;;
-y | --yes) skip_input=true;;
-v | --verbose) verbose=true;;
--quiet) verbose=false;;
*)
echo "error: unreconized argument '$arg', giving up." >&2
exit 1