Skip to content

Commit 2c8a417

Browse files
committed
HADOOP-16810. remove double quotes
1 parent 1b2770a commit 2c8a417

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

start-build-env.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ DOCKER_INTERACTIVE_RUN=${DOCKER_INTERACTIVE_RUN-"-i -t"}
8787
# within the container and use the result on your normal
8888
# system. And this also is a significant speedup in subsequent
8989
# builds because the dependencies are downloaded only once.
90-
dockerargs=("--rm=true")
90+
dockerargs=(--rm=true)
9191
dockerargs+=($DOCKER_INTERACTIVE_RUN)
9292
# use urandom to increase entropy
9393
dockerargs+=(-v "/dev/urandom:/dev/random${V_OPTS:-}")
@@ -102,7 +102,5 @@ dockerargs+=(-w "${DOCKER_HOME_DIR}/hadoop")
102102
# set user
103103
dockerargs+=(-u "${USER_ID}")
104104

105-
set -x
106-
107105
docker run "${dockerargs[@]}" \
108106
"hadoop-build-${USER_ID}" "$@"

0 commit comments

Comments
 (0)