From ed101b9604d731d9f2afa65b843f1e3a7627d8d6 Mon Sep 17 00:00:00 2001 From: Nick <50747025+mcdonnnj@users.noreply.github.com> Date: Thu, 30 Dec 2021 14:47:14 -0500 Subject: [PATCH] Use the long form of a switch for git We prefer using the long form of switches for command line programs to improve maintainability and to better convey what is happening even if someone is unfamiliar with the switches for a given program. Co-authored-by: dav3r --- .github/workflows/update_software_list.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_software_list.yml b/.github/workflows/update_software_list.yml index 4eabb95..acf65b7 100644 --- a/.github/workflows/update_software_list.yml +++ b/.github/workflows/update_software_list.yml @@ -108,4 +108,4 @@ jobs: git merge origin/${{ needs.setup.outputs.testing_branch }} git push - name: Cleanup testing branch - run: git push -d origin ${{ needs.setup.outputs.testing_branch }} + run: git push --delete origin ${{ needs.setup.outputs.testing_branch }}