=====================================================================

--- Bug Fixes ----------------------------

- resolved an error with VARPARSE style arguments
This commit is contained in:
Wryn (yage) Wagner 2024-03-07 12:04:58 -07:00
parent 6b15491066
commit 4ccb79f1e4

View File

@ -60,7 +60,7 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
case $1 in case $1 in
-[a-z][a-z]* ) -[a-z][a-z]* )
VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/') VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
set -- $(echo " $VARSPLIT ") ${@:2} set -- throw-away $(echo " $VARSPLIT ") ${@:2}
;; ;;
### alternate commands ################### ### alternate commands ###################