Repository: ignite Updated Branches: refs/heads/ignite-2.5 3696c064f -> 061a5a82c
IGNITE-8143: Modified fetching EXTERNAL_LIBS for docker container. - Fixes #3751. Signed-off-by: shroman <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/061a5a82 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/061a5a82 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/061a5a82 Branch: refs/heads/ignite-2.5 Commit: 061a5a82c95f4f926c7789764901b70383152df1 Parents: 3696c06 Author: shroman <[email protected]> Authored: Wed Apr 18 19:38:52 2018 +0900 Committer: shroman <[email protected]> Committed: Thu Apr 19 09:49:49 2018 +0900 ---------------------------------------------------------------------- modules/docker/run.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/061a5a82/modules/docker/run.sh ---------------------------------------------------------------------- diff --git a/modules/docker/run.sh b/modules/docker/run.sh index dbf2871..72cfdd8 100644 --- a/modules/docker/run.sh +++ b/modules/docker/run.sh @@ -29,12 +29,8 @@ if [ ! -z "$EXTERNAL_LIBS" ]; then IFS=, LIBS_LIST=("$EXTERNAL_LIBS") for lib in ${LIBS_LIST[@]}; do - echo $lib >> temp + wget $lib -P $IGNITE_HOME/libs done - - wget -i temp -P $IGNITE_HOME/libs - - rm temp fi QUIET=""
