remove unused env.sh

This commit is contained in:
yuk7
2018-08-21 18:19:02 +09:00
parent 927a595ec8
commit 8a0c949efd

29
env.sh
View File

@@ -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