Skip to content

Commit

Permalink
style: appimage_after_bundle.sh style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yurijmikhalevich committed Aug 7, 2021
1 parent d9a3be0 commit b27d31d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions appimage_after_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

set -e

if [[ "${GITHUB_ACTIONS}" ]]; then
if [[ "$GITHUB_ACTIONS" ]]; then
# Install git into the appimage-builder docker image
apt-get update && apt-get install -y git
fi

PYTHONHOME=${APPDIR}/usr
PYTHONPATH=${APPDIR}/usr/lib/python3.8/site-packages:${APPDIR}/usr/lib/python3.8
LD_LIBRARY_PATH=${APPDIR}/usr/lib/x86_64-linux-gnu
PYTHONHOME=$APPDIR/usr
PYTHONPATH=$APPDIR/usr/lib/python3.8/site-packages:$APPDIR/usr/lib/python3.8
LD_LIBRARY_PATH=$APPDIR/usr/lib/x86_64-linux-gnu
python3.8 -m pip install pipenv &&
python3.8 -m pipenv lock -r > requirements.txt &&
python3.8 -m pip install --upgrade --isolated --no-input --ignore-installed --prefix="${APPDIR}/usr" certifi wheel &&
python3.8 -m pip install --upgrade --isolated --no-input --ignore-installed --prefix="${APPDIR}/usr" -r ./requirements.txt
python3.8 -m pip install --upgrade --isolated --no-input --ignore-installed --prefix="$APPDIR/usr" certifi wheel &&
python3.8 -m pip install --upgrade --isolated --no-input --ignore-installed --prefix="$APPDIR/usr" -r ./requirements.txt

0 comments on commit b27d31d

Please sign in to comment.