fix(bash): use git directly instead of function in shutdown script (#119)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/119
This commit is contained in:
Victor Westerlund 2026-02-27 17:23:32 +01:00
parent 7cec26678b
commit e9d980e3ff

View file

@ -29,7 +29,7 @@ zip -9 $file $HOME/.bash_history
# Add the file to git and upload to remote
git add $file
git -c commit.gpgsign=false commit -m "add($(hostname)): '$file'"
gitf u
git push origin master
# Empty the .bash_history file for next session
: > $HOME/.bash_history