refactor(scripts): remove redundant verbose flag handling
- Eliminate unused VERBOSE flag exports in action workflows - Adjust curl commands to consistently output responses instead of suppressing - Simplify script logic by removing unnecessary verbosity checks
This commit is contained in:
@@ -15,7 +15,7 @@ curl_exec() {
|
||||
if [[ "$VERBOSE" == "true" ]]; then
|
||||
curl -v "$@"
|
||||
else
|
||||
curl -s "$@" > /dev/null
|
||||
curl -s "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user