mirror of
https://github.com/yuk7/AlpineWSL.git
synced 2026-03-18 21:40:29 +01:00
remove unused env.sh
This commit is contained in:
29
env.sh
29
env.sh
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user