Standardize verbose parameter from -vb to -ve across all scripts
- Update all Bash scripts (sf-check, sf-org-info, sf-data-export, sf-data-import, sf-logs-tail) to use -ve instead of -vb - Update all PowerShell scripts (sf-org-info.ps1, sf-apex-run.ps1, sf-check.ps1, sf-data-export.ps1, sf-data-import.ps1) to use -ve instead of -vb - Fix PowerShell parameter conflicts with built-in -Verbose parameter - Update README.md, TESTING.md, and OPTION_CONSISTENCY.md documentation to reflect -ve parameter - Update test scripts (test-wrapper-suite.sh, test-wrapper-suite.ps1, test-all-wrappers.sh) to use -ve - Maintain cross-platform consistency with two-character option scheme - Fix Unicode display issues in PowerShell output with UTF-8 encoding
This commit is contained in:
@@ -28,7 +28,7 @@ show_usage() {
|
||||
echo " -ft Filter log entries containing pattern"
|
||||
echo " -ax Show only Apex-related log entries"
|
||||
echo " -nc Disable colored output"
|
||||
echo " -vb Enable verbose output with timestamps"
|
||||
echo " -ve Enable verbose output with timestamps"
|
||||
echo " -hp Show this help message"
|
||||
echo ""
|
||||
echo "EXAMPLES:"
|
||||
@@ -181,7 +181,7 @@ while [[ $# -gt 0 ]]; do
|
||||
NO_COLORS=true
|
||||
shift
|
||||
;;
|
||||
-vb)
|
||||
-ve)
|
||||
VERBOSE=true
|
||||
shift
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user