You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2019/06/30 21:41:14 UTC

[incubator-openwhisk-release] branch master updated: exclude credentials.json.enc in package_source_code.sh (#286)

This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-release.git


The following commit(s) were added to refs/heads/master by this push:
     new 6608937  exclude credentials.json.enc in package_source_code.sh (#286)
6608937 is described below

commit 66089374b05ed6e61f0f2fa47b265df7d50c2c18
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Sun Jun 30 17:41:10 2019 -0400

    exclude credentials.json.enc in package_source_code.sh (#286)
    
    Some repos have encrypted credentials used as part of TravisCI
    testing in a top-level file with this name.  Since we exclude
    .travis.yml from the release, also exclude these credentials.
---
 tools/package_source_code.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/package_source_code.sh b/tools/package_source_code.sh
index ba58c9c..900bee4 100755
--- a/tools/package_source_code.sh
+++ b/tools/package_source_code.sh
@@ -30,7 +30,7 @@ mkdir -p $CURRENT_VERSION_DIR
 # Remove bin and build folders
 mkdir -p $OPENWHISK_CLEANED_SOURCE_DIR
 rm -rf $OPENWHISK_CLEANED_SOURCE_DIR/*
-rsync -rtp --exclude gradle/wrapper/gradle-\*.jar --exclude .bin --exclude .jshintrc --exclude .pydevproject --exclude .rat-excludes --exclude .git\* --exclude .travis.yml --exclude build --exclude specification/archive --exclude specification/diagrams $OPENWHISK_SOURCE_DIR/. $OPENWHISK_CLEANED_SOURCE_DIR
+rsync -rtp --exclude gradle/wrapper/gradle-\*.jar --exclude .bin --exclude .jshintrc --exclude .pydevproject --exclude .rat-excludes --exclude .git\* --exclude .travis.yml --exclude credentials.json.enc --exclude build --exclude specification/archive --exclude specification/diagrams $OPENWHISK_SOURCE_DIR/. $OPENWHISK_CLEANED_SOURCE_DIR
 
 for repo in $(echo $repos | sed "s/,/ /g")
 do