This commit is contained in:
deathbybandaid 2022-03-08 10:18:31 -05:00
parent a4c9565a33
commit ce048f4eb7

View File

@ -7,7 +7,7 @@ topgrade_conf_repo="https://git.deathbybandaid.net/deathbybandaid/topgrade.git"
# Use Configuration options from repo # Use Configuration options from repo
topgrade_conf_pull () topgrade_conf_pull ()
{ {
if [ -d "$topgrade_conf_path" ] ; then if [[ -d "$topgrade_conf_path" ]] ; then
git -C $topgrade_conf_path pull --quiet && echo "Pulled $topgrade_conf_path" git -C $topgrade_conf_path pull --quiet && echo "Pulled $topgrade_conf_path"
else else
git clone --quiet "$topgrade_conf_repo" "$topgrade_conf_path" && echo "Pulled $topgrade_conf_path" git clone --quiet "$topgrade_conf_repo" "$topgrade_conf_path" && echo "Pulled $topgrade_conf_path"
@ -25,8 +25,8 @@ alias templategitup='$topgrade_path --config $topgrade_conf_path/template_git.to
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"
fi fi
@ -35,8 +35,8 @@ 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