AutoYADM commit: 2025-05-02 18:50:13

This commit is contained in:
Daniel Fichtinger 2025-05-02 18:50:13 -04:00
parent 240cc37ac1
commit 58cb590e87

View file

@ -1,4 +1,4 @@
function newrepo --argument-names name function newrepo
argparse h/help p/private P/public s/srht g/github a/all d/description= -- $argv argparse h/help p/private P/public s/srht g/github a/all d/description= -- $argv
function help function help
echo Help menu echo Help menu
@ -25,6 +25,7 @@ function newrepo --argument-names name
else if set -lq _flag_a && set -lq _flag_s || set -lq _flag_g else if set -lq _flag_a && set -lq _flag_s || set -lq _flag_g
set -a errors 'provider: all must be alone!' set -a errors 'provider: all must be alone!'
end end
set -l name $argv[1]
if test (count $errors) -ne 0 if test (count $errors) -ne 0
for i in $errors for i in $errors
echo ERROR: $i echo ERROR: $i
@ -35,7 +36,7 @@ function newrepo --argument-names name
if set -lq _flag_s || set -lq _flag_a if set -lq _flag_s || set -lq _flag_a
set -l add set -l add
if set -lq _flag_d if set -lq _flag_d
set add --description $_flag_d set add --description \"$_flag_d\"
end end
echo hut git create $name --visibility $visibility $add echo hut git create $name --visibility $visibility $add
end end