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

[1/2] incubator-trafficcontrol git commit: redo --transform on tar to fix symlink issue

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 7d9509fc0 -> b7b4840a0


redo --transform on tar to fix symlink issue


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

Branch: refs/heads/master
Commit: ebfae5038a66a3124a329c9f11c51c705b083dd0
Parents: 7d9509f
Author: Dan Kirkwood <da...@gmail.com>
Authored: Fri May 19 13:54:33 2017 -0600
Committer: Eric Friedrich <fr...@apache.org>
Committed: Fri May 19 16:00:23 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/ebfae503/build/functions.sh
----------------------------------------------------------------------
diff --git a/build/functions.sh b/build/functions.sh
index 50ca81b..850daef 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 "flags=S;s@^@$projName-$version/@" $(git ls-files)
+        tar -czf "$tarball" -C "$bndir" BUILD_NUMBER -C "$projDir" --exclude-vcs --transform "s@^@$projName-$version/@S" $(git ls-files)
         rm -r "$bndir"
         echo "$tarball"
 }


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

Posted by fr...@apache.org.
This closes #593


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

Branch: refs/heads/master
Commit: b7b4840a05b075d1259670a35d98c5cbc7ac1e53
Parents: ebfae50
Author: Eric Friedrich <fr...@apache.org>
Authored: Fri May 19 16:00:33 2017 -0400
Committer: Eric Friedrich <fr...@apache.org>
Committed: Fri May 19 16:00:33 2017 -0400

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

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