From commits-return-7290-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Fri May 3 00:10:38 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 2DD1E180671 for ; Fri, 3 May 2019 02:10:38 +0200 (CEST) Received: (qmail 8055 invoked by uid 500); 3 May 2019 00:10:37 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 8046 invoked by uid 99); 3 May 2019 00:10:37 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 May 2019 00:10:37 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 687FB871DE; Fri, 3 May 2019 00:10:37 +0000 (UTC) Date: Fri, 03 May 2019 00:10:37 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-package-kafka] branch master updated: Add --quiet/-q to recursive zip commands (#338) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155684223735.29894.651828678000451717@gitbox.apache.org> From: style95@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-package-kafka X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 7ebdaa67d5e2b5813014e0c76e8e8ad4d9e62ea5 X-Git-Newrev: c66c8af227d0aca4203a97a548425fdcbde25bb9 X-Git-Rev: c66c8af227d0aca4203a97a548425fdcbde25bb9 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. style95 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-kafka.git The following commit(s) were added to refs/heads/master by this push: new c66c8af Add --quiet/-q to recursive zip commands (#338) c66c8af is described below commit c66c8af227d0aca4203a97a548425fdcbde25bb9 Author: Anthony Amanse AuthorDate: Thu May 2 17:10:32 2019 -0700 Add --quiet/-q to recursive zip commands (#338) This commit makes the zip command not output lines of all the files it adds in the compressed file. The lines can reach to thousand of lines without the -q option. This makes it easy to scroll through the progress of the script. --- installCatalog.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installCatalog.sh b/installCatalog.sh index 512da1f..18ae06b 100755 --- a/installCatalog.sh +++ b/installCatalog.sh @@ -62,7 +62,7 @@ then fi cp -f messageHubFeed_package.json package.json -zip -r messageHubFeed.zip lib package.json messageHubFeed.js +zip -r messageHubFeed.zip lib package.json messageHubFeed.js -q $WSK_CLI -i --apihost "$EDGEHOST" action update --kind "$ACTION_RUNTIME_VERSION" messaging/messageHubFeed "$PACKAGE_HOME/action/messageHubFeed.zip" \ --auth "$AUTH" \ @@ -99,7 +99,7 @@ fi cp -f messageHubFeedWeb_package.json package.json npm install -zip -r messageHubFeedWeb.zip lib package.json messageHubFeedWeb.js node_modules +zip -r messageHubFeedWeb.zip lib package.json messageHubFeedWeb.js node_modules -q cd $OLD_PATH