From 3f7ec87e8e831b77d92da59e5245c6464c469fc6 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 27 Feb 2026 17:22:40 +0100 Subject: [PATCH] fix(bash): use git directly instead of function in shutdown script --- .local/bin/scripts/shutdown.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/scripts/shutdown.sh b/.local/bin/scripts/shutdown.sh index 7c65a61..2b55e64 100755 --- a/.local/bin/scripts/shutdown.sh +++ b/.local/bin/scripts/shutdown.sh @@ -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