Repository: mesos Updated Branches: refs/heads/master a744bc06e -> cd4173059
Fixed jenkins_build.sh to properly cd into directory whose name has spaces. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/cd417305 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/cd417305 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/cd417305 Branch: refs/heads/master Commit: cd4173059489eae33ee0c578e1fd61f10fc45a66 Parents: a744bc0 Author: Vinod Kone <[email protected]> Authored: Fri Jul 31 17:43:33 2015 -0700 Committer: Vinod Kone <[email protected]> Committed: Fri Jul 31 17:43:33 2015 -0700 ---------------------------------------------------------------------- support/jenkins_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/cd417305/support/jenkins_build.sh ---------------------------------------------------------------------- diff --git a/support/jenkins_build.sh b/support/jenkins_build.sh index 1d00f4f..49bb091 100755 --- a/support/jenkins_build.sh +++ b/support/jenkins_build.sh @@ -12,7 +12,7 @@ set -xe # Change to the root of Mesos repo for docker build context. MESOS_DIRECTORY=$( cd "$( dirname "$0" )/.." && pwd ) -cd $MESOS_DIRECTORY +cd "$MESOS_DIRECTORY" # TODO(vinod): Once ASF CI supports Docker 1.5 use a custom name for # Dockerfile to avoid overwriting Dockerfile (if it exists) at the root
