Repository: eagle Updated Branches: refs/heads/master 6b8ed3361 -> 7f4dd3b46
EAGLE-1074 - eagle-docker.sh uses the wrong path fix startup issue https://issues.apache.org/jira/browse/EAGLE-1074 Author: @coheigea [email protected] Reviewer: @yonzhang2012 [email protected] Closes: #976 Project: http://git-wip-us.apache.org/repos/asf/eagle/repo Commit: http://git-wip-us.apache.org/repos/asf/eagle/commit/7f4dd3b4 Tree: http://git-wip-us.apache.org/repos/asf/eagle/tree/7f4dd3b4 Diff: http://git-wip-us.apache.org/repos/asf/eagle/diff/7f4dd3b4 Branch: refs/heads/master Commit: 7f4dd3b46d08a0ebf577bf1498e2d1bd6a79a600 Parents: 6b8ed33 Author: yonzhang <[email protected]> Authored: Thu Feb 1 15:06:55 2018 -0800 Committer: yonzhang <[email protected]> Committed: Thu Feb 1 15:06:55 2018 -0800 ---------------------------------------------------------------------- eagle-external/eagle-docker/bin/eagle-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/eagle/blob/7f4dd3b4/eagle-external/eagle-docker/bin/eagle-docker.sh ---------------------------------------------------------------------- diff --git a/eagle-external/eagle-docker/bin/eagle-docker.sh b/eagle-external/eagle-docker/bin/eagle-docker.sh index ea05c49..e68023f 100755 --- a/eagle-external/eagle-docker/bin/eagle-docker.sh +++ b/eagle-external/eagle-docker/bin/eagle-docker.sh @@ -69,7 +69,7 @@ function build(){ # bringing it to a parent level DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - cd $DIR/../../../ + cd $DIR/../../ # ========================================== # Check Eagle Docker Image
