You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sh...@apache.org on 2018/04/18 10:39:25 UTC

ignite git commit: IGNITE-8143: Modified fetching EXTERNAL_LIBS for docker container. - Fixes #3751.

Repository: ignite
Updated Branches:
  refs/heads/master ced5d2768 -> 17ed189d7


IGNITE-8143: Modified fetching EXTERNAL_LIBS for docker container. - Fixes #3751.

Signed-off-by: shroman <rs...@yahoo.com>


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/17ed189d
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/17ed189d
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/17ed189d

Branch: refs/heads/master
Commit: 17ed189d70663289859c1da0d25ad69481cf9a6c
Parents: ced5d27
Author: shroman <rs...@yahoo.com>
Authored: Wed Apr 18 19:38:52 2018 +0900
Committer: shroman <rs...@yahoo.com>
Committed: Wed Apr 18 19:38:52 2018 +0900

----------------------------------------------------------------------
 modules/docker/run.sh | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/17ed189d/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=""