Signed-off-by: geraldo netto <[email protected]> --- oracle-nosql-db/GET | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/oracle-nosql-db/GET b/oracle-nosql-db/GET index f3b3704..d672e84 100755 --- a/oracle-nosql-db/GET +++ b/oracle-nosql-db/GET @@ -1,9 +1,10 @@ +#!/bin/sh set -e VERSION=3.0.5 SRC_DIR=kv-ce-$VERSION TARBALL=$SRC_DIR.tar.gz if [ ! -e $TARBALL ];then - wget http://download.oracle.com/otn-pub/otn_software/nosql-database/$TARBALL + wget -c http://download.oracle.com/otn-pub/otn_software/nosql-database/$TARBALL fi rm -rf $SRC_DIR tar zxf $TARBALL -- 2.7.4 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
