Update install script to accept proxy
All checks were successful
Bump deps (only minor versions) / ci (push) Successful in 37s
All checks were successful
Bump deps (only minor versions) / ci (push) Successful in 37s
This commit is contained in:
parent
2f25ccf600
commit
5ff4dc73de
1 changed files with 7 additions and 1 deletions
|
@ -4,12 +4,17 @@
|
||||||
### of `scaricatore`.
|
### of `scaricatore`.
|
||||||
|
|
||||||
PROJECT_ROOT=$1
|
PROJECT_ROOT=$1
|
||||||
|
PROXY=$2
|
||||||
|
|
||||||
if [ -z ${PROJECT_ROOT+x} ]; then
|
if [ -z ${PROJECT_ROOT+x} ]; then
|
||||||
echo "error no project_root set"
|
echo "ERROR: No PROJECT_ROOT set (first argument to ${0})"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z ${PROXY+x} ]; then
|
||||||
|
echo "INFO: no proxy given"
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p "${PROJECT_ROOT}"
|
mkdir -p "${PROJECT_ROOT}"
|
||||||
cd "${PROJECT_ROOT}" || exit 1
|
cd "${PROJECT_ROOT}" || exit 1
|
||||||
|
|
||||||
|
@ -25,3 +30,4 @@ rm build.tar.gz
|
||||||
npm ci
|
npm ci
|
||||||
npm run download-yt-dlp
|
npm run download-yt-dlp
|
||||||
echo "YTDLP_PATH=$(readlink -f yt-dlp)" >>.env
|
echo "YTDLP_PATH=$(readlink -f yt-dlp)" >>.env
|
||||||
|
echo "HTTPS_PROXY=${PROXY}" >>.env
|
||||||
|
|
Loading…
Add table
Reference in a new issue