From 983d050476fa6aee87ad79b4a3c55afc62abe9ee Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Fri, 31 Jan 2020 15:34:17 -0700 Subject: [PATCH] Minor reformatting in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5e9808c..c4b0e3e 100644 --- a/Makefile +++ b/Makefile @@ -27,8 +27,8 @@ clear-cache: # Clear the application cache @rm app/cache/* -rfv tar: # Generate tarball - @tar --verbose --create --gzip --exclude-vcs --exclude app/cache/* --exclude app/resources \ - --file artifacts/$(ARTIFACT_NAME).tar.gz $(ARTIFACT_FILES) + @tar --verbose --exclude-vcs --exclude app/cache/* --exclude app/resources \ + --create --gzip --file artifacts/$(ARTIFACT_NAME).tar.gz $(ARTIFACT_FILES) zip: # Generate zip file @zip --verbose --exclude "*.git*" "app/cache/**" "app/resources/*" \