From e2fc67ece8aa3c0fdc2a2b8b8b5bae9dd81b44bb Mon Sep 17 00:00:00 2001 From: Aaron Schaffer <40671448+ajschaf@users.noreply.github.com> Date: Mon, 1 Jan 2024 17:07:24 -0500 Subject: [PATCH] Update update_and_commit_all.sh --- update_and_commit_all.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/update_and_commit_all.sh b/update_and_commit_all.sh index 7c6ad5cb..05cc85fb 100644 --- a/update_and_commit_all.sh +++ b/update_and_commit_all.sh @@ -18,19 +18,9 @@ fetch_and_sort () { echo "$(git log --oneline --pretty="@%h" --stat |grep -v \| | tr "\n" " " | tr "@" "\n")" >> $commit_txt } -fetch_and_diff () { - fetch_and_sort $1 $2 - local csv_diff_args=$3 - local csv="$1.csv" - local csv_old="$1.csv.old" - local commit_txt="$1.commit.txt" - csv-diff $csv_old $csv $csv_diff_args > $commit_txt - echo $'\n[skip ci]' >> $commit_txt -} - add_and_commit () { local csv="$1.csv" - local commit_txt="$1.commit.txt" +# local commit_txt="$1.commit.txt" git add $csv git commit -F $commit_txt && \ git push -q origin master \