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/12/17 19:40:43 UTC

[openwhisk-release] branch master updated: do not copy .odg files into source releases (#309)

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/openwhisk-release.git


The following commit(s) were added to refs/heads/master by this push:
     new 25a8d86  do not copy .odg files into source releases (#309)
25a8d86 is described below

commit 25a8d86dbc8e349e4610cc6fefcc38710bfc4826
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Tue Dec 17 14:40:36 2019 -0500

    do not copy .odg files into source releases (#309)
    
    .odg files are useful to allow in git as the "source" file for
    various .png files in the doc tree, but are a binary format and
    therefore should be dropped from Apache source releases.
---
 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 508c056..7c79476 100755
--- a/tools/package_source_code.sh
+++ b/tools/package_source_code.sh
@@ -32,7 +32,7 @@ rm -rf $OPENWHISK_CLEANED_SOURCE_DIR/*
 # Clean up all the source code by excluding unnecessary files and folders
 # Remove hidden files and folder
 # Remove bin and build folders
-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 --exclude tests/src/integration $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 --exclude "*.odg" --exclude tests/src/integration $OPENWHISK_SOURCE_DIR/. $OPENWHISK_CLEANED_SOURCE_DIR
 
 for repo in $(echo $repos | sed "s/,/ /g")
 do