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 <[email protected]> Authored: Fri Sep 25 16:16:42 2015 +0200 Committer: Ufuk Celebi <[email protected]> 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
