Compare commits

..

No commits in common. "2771b413e29420a403169acc3682f1da2b089714" and "17ee10406b687e8e3cf9869dd8bd089fd3d5edee" have entirely different histories.

View File

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