diff --git a/env.sh b/env.sh deleted file mode 100644 index e6a764c..0000000 --- a/env.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -ARCH="x86_64" -BASE_VER="3.8" -BASE_VER_R="0" -BASE_FN="alpine-minirootfs-${BASE_VER}.${BASE_VER_R}-${ARCH}.tar.gz" -BASE_URL="http://dl-cdn.alpinelinux.org/alpine/v${BASE_VER}/releases/${ARCH}/${BASE_FN}" - -GLIBC_VER="2.27-r0" -GLIBC_FN="glibc-${GLIBC_VER}.apk" -GLIBC_URL="https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VER}/${GLIBC_FN}" - -LNCR_BLD="18080900" -LNCR_ZIP="icons.zip" -LNCR_FN="Alpine.exe" -LNCR_URL="https://github.com/yuk7/wsldl/releases/download/${LNCR_BLD}/${LNCR_ZIP}" - - -if type wget >/dev/null 2>&1;then - DLR="wget" -fi -if type curl >/dev/null 2>&1 ;then - DLR="curl" -fi -if type aria2c >/dev/null 2>&1; then - DLR="aria2c -x4" -fi - -