You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2017/05/19 18:52:21 UTC

[1/2] incubator-trafficcontrol git commit: when creating tarball, do not transform symlinks

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 3f0f1ea25 -> 08ae1af97


when creating tarball, do not transform symlinks


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/ab7de007
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/ab7de007
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/ab7de007

Branch: refs/heads/master
Commit: ab7de00750fa27e3046d92b60667d73e9243f384
Parents: 3f0f1ea
Author: Dan Kirkwood <da...@gmail.com>
Authored: Fri May 19 12:20:41 2017 -0600
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Fri May 19 12:51:43 2017 -0600

----------------------------------------------------------------------
 build/functions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/ab7de007/build/functions.sh
----------------------------------------------------------------------
diff --git a/build/functions.sh b/build/functions.sh
index 54fc04c..50ca81b 100755
--- a/build/functions.sh
+++ b/build/functions.sh
@@ -168,7 +168,7 @@ function createTarball() {
         getBuildNumber >"$bndir/BUILD_NUMBER"
 
         # create the tarball only from files in repo and BUILD_NUMBER
-        tar -czf "$tarball" -C "$bndir" BUILD_NUMBER -C "$projDir" --exclude-vcs --transform "s@^@$projName-$version/@" $(git ls-files)
+        tar -czf "$tarball" -C "$bndir" BUILD_NUMBER -C "$projDir" --exclude-vcs --transform "flags=S;s@^@$projName-$version/@" $(git ls-files)
         rm -r "$bndir"
         echo "$tarball"
 }


[2/2] incubator-trafficcontrol git commit: This closes #591

Posted by mi...@apache.org.
This closes #591


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/08ae1af9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/08ae1af9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/08ae1af9

Branch: refs/heads/master
Commit: 08ae1af97c3e9fc391bbd418906e90c3d3799af7
Parents: ab7de00
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Fri May 19 12:52:04 2017 -0600
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Fri May 19 12:52:04 2017 -0600

----------------------------------------------------------------------

----------------------------------------------------------------------