aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-26 09:13:18 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-26 09:13:18 +0100
commit4949c305ba1e3be17524063dcb87e59108cfca3d (patch)
treee7f6e313253a893b08444bd0f49225120772456c
parent4cf19272e02304361a6f4bfe7c9d1a717859954f (diff)
Should fix the git add problem
-rwxr-xr-xclear_and_post_quicknote.pl4
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");