From 740f2579aef0bffdf564ae4c6db080f6c7d45422 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Sun, 22 Nov 2020 11:55:32 -0500 Subject: [PATCH] quietly unzip new web --- bin/bpatchfull | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bpatchfull b/bin/bpatchfull index 887e5934..8aca349c 100755 --- a/bin/bpatchfull +++ b/bin/bpatchfull @@ -65,5 +65,5 @@ fi if unzip -Z -1 ./target/bubble*.jar | grep -q "^site/$" ; then echo "Deploying new web: ${HOST} ..." - ssh -p ${BUBBLE_SSH_PORT} ${HOST} "cd ~bubble && unzip -o /tmp/bubble.jar 'site/*' && chown -R bubble:bubble site" + ssh -p ${BUBBLE_SSH_PORT} ${HOST} "cd ~bubble && unzip -q -o /tmp/bubble.jar 'site/*' && chown -R bubble:bubble site" fi