48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
PKGR_TMP_ROOT=pkgr_tmproot_${PKGR_TMP_ID}
mkdir -p "${PKGR_TMP_ROOT}/pkgdtmp" || exit 1
mkdir -p "${PKGR_TMP_ROOT}/download" || exit 1
pushd "${PKGR_TMP_ROOT}/download" || exit 1
PKGR_CLIENT_URI=https://urn.to/r/pkg_client_full
PKGR_TMP_FILE=pkgrd_tmp_file.zip
PKGR_GET_OK=0
if [ -x "$(command -v wget)" ]; then
for wgetArg in "" ""
do
if wget -4 $wgetArg "--output-document=${PKGR_TMP_FILE}" "${PKGR_CLIENT_URI}"; then
|
|
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
PKGR_TMP_ROOT=pkgr_tmproot_${PKGR_TMP_ID}
mkdir -p "${PKGR_TMP_ROOT}/pkgdtmp" || exit 1
mkdir -p "${PKGR_TMP_ROOT}/download" || exit 1
pushd "${PKGR_TMP_ROOT}/download" || exit 1
PKGR_CLIENT_URI=https://tcl.to/r/pkg_client_full
PKGR_TMP_FILE=pkgrd_tmp_file.zip
PKGR_GET_OK=0
if [ -x "$(command -v wget)" ]; then
for wgetArg in "" ""
do
if wget -4 $wgetArg "--output-document=${PKGR_TMP_FILE}" "${PKGR_CLIENT_URI}"; then
|