diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-26 09:13:18 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-26 09:13:18 +0100 |
commit | 4949c305ba1e3be17524063dcb87e59108cfca3d (patch) | |
tree | e7f6e313253a893b08444bd0f49225120772456c | |
parent | 4cf19272e02304361a6f4bfe7c9d1a717859954f (diff) |
Should fix the git add problem
-rwxr-xr-x | clear_and_post_quicknote.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clear_and_post_quicknote.pl b/clear_and_post_quicknote.pl index 4938b5e..7934ecf 100755 --- a/clear_and_post_quicknote.pl +++ b/clear_and_post_quicknote.pl @@ -1,4 +1,4 @@ -#!/usr/bin/env -S perl +#!/usr/bin/env -S perl -w use 5.010; use warnings; @@ -62,7 +62,7 @@ close($FH); chdir "/home/lemon/code/html/yulqen.org"; say getcwd(); # my @gitstatuscmd = ("git", "status"); -my @gitaddcmd = ("git add -u"); +my @gitaddcmd = ("git add -A"); my @gitcommitcmd = ("git commit -m 'update'"); my @gitpushcmd = ("git push"); my @pushcmd = ("make push"); |