Browse Source
AppImage: Disable pip warnings about script install locations
It warns about scripts being installed in a location that is not on the
path, but that is inconsequential as they are not used.
-----
taken from Electron-Cash/Electron-Cash@9a29017c5d8906bb04f7e188bf483b0d3ff698f4
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
Axel Gembe
6 years ago
committed by
SomberNight
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
4 additions and
4 deletions
contrib/build-linux/appimage/build.sh
@ -132,10 +132,10 @@ info "preparing electrum-locale."
info "installing electrum and its dependencies."
info "installing electrum and its dependencies."
mkdir -p " $CACHEDIR /pip_cache "
mkdir -p " $CACHEDIR /pip_cache "
" $python " -m pip install --cache-dir " $CACHEDIR /pip_cache " -r " $CONTRIB /deterministic-build/requirements.txt "
" $python " -m pip install --no-warn-script-location -- cache-dir " $CACHEDIR /pip_cache " -r " $CONTRIB /deterministic-build/requirements.txt "
" $python " -m pip install --cache-dir " $CACHEDIR /pip_cache " -r " $CONTRIB /deterministic-build/requirements-binaries.txt "
" $python " -m pip install --no-warn-script-location -- cache-dir " $CACHEDIR /pip_cache " -r " $CONTRIB /deterministic-build/requirements-binaries.txt "
" $python " -m pip install --cache-dir " $CACHEDIR /pip_cache " -r " $CONTRIB /deterministic-build/requirements-hw.txt "
" $python " -m pip install --no-warn-script-location -- cache-dir " $CACHEDIR /pip_cache " -r " $CONTRIB /deterministic-build/requirements-hw.txt "
" $python " -m pip install --cache-dir " $CACHEDIR /pip_cache " " $PROJECT_ROOT "
" $python " -m pip install --no-warn-script-location -- cache-dir " $CACHEDIR /pip_cache " " $PROJECT_ROOT "
info "copying zbar"
info "copying zbar"