This commit is contained in:
deathbybandaid 2022-03-08 10:16:32 -05:00
parent 10cc2f456d
commit a4c9565a33

View File

@ -18,14 +18,14 @@ alias topgrade-conf-pull='topgrade_conf_pull'
#alias topgrade='$topgrade_path' #alias topgrade='$topgrade_path'
# System Updates Only # System Updates Only
#alias sysup='$topgrade_path --config $topgrade_conf_path/systemonly.toml' alias sysup='$topgrade_path --config $topgrade_conf_path/systemonly.toml'
# Template Repos # Template Repos
#alias templategitup='$topgrade_path --config $topgrade_conf_path/template_git.toml' alias templategitup='$topgrade_path --config $topgrade_conf_path/template_git.toml'
topgrade () topgrade ()
{ {
if [ -f "$topgrade_path" ] ; then if [ -f $topgrade_path ] ; then
"$topgrade_path" "$topgrade_path"
else else
echo "topgrade not found at $topgrade_path" echo "topgrade not found at $topgrade_path"
@ -33,11 +33,11 @@ topgrade ()
} }
# System Updates Only # System Updates Only
sysup () #sysup ()
{ #{
if [ -f "$topgrade_path" ] ; then # if [ -f $topgrade_path ] ; then
"$topgrade_path" --config $topgrade_conf_path/systemonly.toml # "$topgrade_path" --config $topgrade_conf_path/systemonly.toml
else # else
echo "topgrade not found at $topgrade_path" # echo "topgrade not found at $topgrade_path"
fi # fi
} #}