Remove all long options (--) for complete consistency
✅ Major Consistency Update: - Removed ALL long options (--target-org, --help, etc.) from scripts - Now using ONLY two-character options (-to, -hp, etc.) - Complete consistency across all wrapper scripts Updated Scripts: ✅ sf-deploy: Removed --target-org, --sources, --directory, --tests, --help ✅ sf-dry-run: Removed all --long options, matching sf-deploy ✅ sf-web-open: Removed --target-org, --path, --url-only, --help ✅ sf-data-export: Removed all --long options throughout ✅ sf-logs-tail: Removed all --long options and updated help text Updated Test Scripts: ✅ test-wrapper-suite.sh: Removed --help tests and --long option tests ✅ quick-test.sh: Updated to use -ls instead of --list ✅ All tests now use only two-character options 🎯 Result: Pure two-character option interface - Clean, consistent UX: -to, -sr, -dr, -ts, -hp, -qy, -fl, etc. - No mixing of single-char, two-char, and long options - Memorable, self-documenting option names throughout
This commit is contained in:
@@ -85,7 +85,7 @@ fi
|
||||
# Test sf-org-info
|
||||
echo -n "Testing sf-org-info... "
|
||||
((TESTS++))
|
||||
if ./sf-org-info --list >/dev/null 2>&1; then
|
||||
if ./sf-org-info -ls >/dev/null 2>&1; then
|
||||
echo -e "${GREEN}✓${NC}"
|
||||
((PASSED++))
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user