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/26 02:02:26 UTC

[1/2] incubator-trafficcontrol git commit: clean_build.sh no longer tromps parallel builds

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 501e8efde -> e4b533520


clean_build.sh no longer tromps parallel builds


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

Branch: refs/heads/master
Commit: 15683cd20633c86df94184c351a5dfa0ba2783be
Parents: 501e8ef
Author: Dan Kirkwood <da...@gmail.com>
Authored: Thu May 25 09:30:10 2017 -0600
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Thu May 25 20:01:56 2017 -0600

----------------------------------------------------------------------
 infrastructure/docker/build/clean_build.sh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/15683cd2/infrastructure/docker/build/clean_build.sh
----------------------------------------------------------------------
diff --git a/infrastructure/docker/build/clean_build.sh b/infrastructure/docker/build/clean_build.sh
index 51e4fba..e7baac5 100755
--- a/infrastructure/docker/build/clean_build.sh
+++ b/infrastructure/docker/build/clean_build.sh
@@ -31,10 +31,9 @@ trap cleanup EXIT
 set -x
 
 # set owner of dist dir -- cleans up existing dist permissions...
-rm -rf /trafficcontrol/dist
-
 cp -a /trafficcontrol /tmp/. && \
 	cd /tmp/trafficcontrol && \
+	rm -rf dist && \
 	mkdir -p /trafficcontrol/dist && \
-	ln -fs /trafficcontrol/dist dist && \
+	ln -s /trafficcontrol/dist dist && \
 	((((./build/build.sh $1 2>&1; echo $? >&3) | tee ./dist/build-$1.log >&4) 3>&1) | (read x; exit $x)) 4>&1


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

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


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

Branch: refs/heads/master
Commit: e4b533520a3f8d768bc2b7f1a358ccf52c9e41ba
Parents: 15683cd
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Thu May 25 20:02:18 2017 -0600
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Thu May 25 20:02:18 2017 -0600

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

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