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'
# 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
#alias templategitup='$topgrade_path --config $topgrade_conf_path/template_git.toml'
alias templategitup='$topgrade_path --config $topgrade_conf_path/template_git.toml'
topgrade ()
{
if [ -f "$topgrade_path" ] ; then
if [ -f $topgrade_path ] ; then
"$topgrade_path"
else
echo "topgrade not found at $topgrade_path"
@ -33,11 +33,11 @@ topgrade ()
}
# System Updates Only
sysup ()
{
if [ -f "$topgrade_path" ] ; then
"$topgrade_path" --config $topgrade_conf_path/systemonly.toml
else
echo "topgrade not found at $topgrade_path"
fi
}
#sysup ()
#{
# if [ -f $topgrade_path ] ; then
# "$topgrade_path" --config $topgrade_conf_path/systemonly.toml
# else
# echo "topgrade not found at $topgrade_path"
# fi
#}