Compare commits

...

2 Commits

Author SHA1 Message Date
deathbybandaid
2771b413e2 update topgrade 2022-02-01 15:30:31 -05:00
deathbybandaid
a9c42ef2fa update topgrade 2022-02-01 15:30:07 -05:00

View File

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