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 2016/11/11 02:45:15 UTC

[3/4] incubator-trafficcontrol git commit: return name of tarball

return name of tarball


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

Branch: refs/heads/master
Commit: 2eceb78e01ebe0f71f9c8e389bba392280327b06
Parents: 502d052
Author: Dan Kirkwood <da...@gmail.com>
Authored: Thu Nov 10 16:44:42 2016 -0700
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Thu Nov 10 16:44:42 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/2eceb78e/build/functions.sh
----------------------------------------------------------------------
diff --git a/build/functions.sh b/build/functions.sh
index edd5649..2132064 100755
--- a/build/functions.sh
+++ b/build/functions.sh
@@ -165,4 +165,5 @@ function createTarball() {
         # 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/@" $(git ls-files)
         rm -r "$bndir"
+        echo "$tarball"
 }