More consistently push non-dotfile data

This commit is contained in:
Sage Vaillancourt 2024-03-01 07:06:13 -05:00
parent b9982fd8a5
commit cdbbb722a8
1 changed files with 4 additions and 1 deletions

View File

@ -178,7 +178,10 @@ function pushdot {
res="$?"
fi
if [[ "$res" == "0" ]]; then
git push -u origin main && push-extensions && sync-history && push-dconf
git push -u origin main
push-extensions
sync-history
push-dconf
fi
cd -
return $res