From 78d2210b1fc275adb0365b2002bfd0303aa45aee Mon Sep 17 00:00:00 2001 From: John Schoenick Date: Wed, 17 Oct 2018 16:55:23 -0700 Subject: [PATCH] build/makefile_base.mak: Print a message during deploy step Largely for my testing that 'make all deploy' was doing things right, but mildly helpful and matches install step. --- build/makefile_base.mak | 1 + 1 file changed, 1 insertion(+) diff --git a/build/makefile_base.mak b/build/makefile_base.mak index 324234d4..5633f028 100644 --- a/build/makefile_base.mak +++ b/build/makefile_base.mak @@ -312,6 +312,7 @@ deploy: dist | $(filter-out dist deploy install,$(MAKECMDGOALS)) mkdir -p $(DEPLOY_DIR) && \ cp -a $(DEPLOY_COPY_TARGETS) $(DEPLOY_DIR) && \ tar -C $(DST_DIR) -c . | gzip -c -1 > $(DEPLOY_DIR)/proton_dist.tar.gz + @echo "Created deployment tarball at "$(DEPLOY_DIR)"/proton_dist.tar.gz" install: dist | $(filter-out dist deploy install,$(MAKECMDGOALS)) if [ ! -d $(STEAM_DIR) ]; then echo >&2 "!! "$(STEAM_DIR)" does not exist, cannot install"; return 1; fi