You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by da...@apache.org on 2016/11/28 21:36:14 UTC

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

return name of tarball

(cherry picked from commit 2eceb78e01ebe0f71f9c8e389bba392280327b06)


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

Branch: refs/heads/1.8.x
Commit: a2e712594b215026768c0a3383dad73319c4c551
Parents: b5b42c2
Author: Dan Kirkwood <da...@gmail.com>
Authored: Thu Nov 10 16:44:42 2016 -0700
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Mon Nov 28 14:08:08 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/a2e71259/build/functions.sh
----------------------------------------------------------------------
diff --git a/build/functions.sh b/build/functions.sh
index 8ee3242..6fa861f 100755
--- a/build/functions.sh
+++ b/build/functions.sh
@@ -168,4 +168,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"
 }