You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by uc...@apache.org on 2015/09/25 16:17:01 UTC

flink git commit: [scripts] Exclude .git in source release

Repository: flink
Updated Branches:
  refs/heads/master 6b26e236a -> 0b3ca57b4


[scripts] Exclude .git in source release


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/0b3ca57b
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/0b3ca57b
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/0b3ca57b

Branch: refs/heads/master
Commit: 0b3ca57b41e09937b9e63f2f443834c8ad1cf497
Parents: 6b26e23
Author: Ufuk Celebi <uc...@apache.org>
Authored: Fri Sep 25 16:16:42 2015 +0200
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Fri Sep 25 16:16:42 2015 +0200

----------------------------------------------------------------------
 tools/create_release_files.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/0b3ca57b/tools/create_release_files.sh
----------------------------------------------------------------------
diff --git a/tools/create_release_files.sh b/tools/create_release_files.sh
index affab13..1660fc8 100755
--- a/tools/create_release_files.sh
+++ b/tools/create_release_files.sh
@@ -116,7 +116,7 @@ make_source_release() {
   cd ..
 
   echo "Creating source package"
-  rsync -a --exclude "flink/.git" flink/ flink-$RELEASE_VERSION
+  rsync -a --exclude ".git" flink/ flink-$RELEASE_VERSION
   tar czf flink-${RELEASE_VERSION}-src.tgz flink-$RELEASE_VERSION
   echo $GPG_PASSPHRASE | $GPG --batch --default-key $GPG_KEY --passphrase-fd 0 --armour --output flink-$RELEASE_VERSION-src.tgz.asc \
     --detach-sig flink-$RELEASE_VERSION-src.tgz