From 19fa3e254b1f791881cdaf650024d69573cdc7b3 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Wed, 6 May 2020 14:03:08 -0700 Subject: [PATCH] Silence tar and zip creation output --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 15f4a67..7b350d7 100644 --- a/Makefile +++ b/Makefile @@ -30,11 +30,11 @@ clear-cache: # Clear the application cache @rm app/cache/* -rfv tar: # Generate tarball - @tar --verbose --exclude-vcs --exclude app/cache/* --exclude app/resources \ + @tar --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/*" \ + @zip --quiet --exclude "*.git*" "app/cache/**" "app/resources/*" \ --recurse-paths artifacts/$(ARTIFACT_NAME).zip $(ARTIFACT_FILES) artifacts: clear-assets production tar zip # Generate release artifacts