You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
366 B
11 lines
366 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
APPDIR="$(dirname "$(readlink -e "$0")")"
|
|
|
|
export LD_LIBRARY_PATH="${APPDIR}/usr/lib/:${APPDIR}/usr/lib/x86_64-linux-gnu${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}"
|
|
export PATH="${APPDIR}/usr/bin:${PATH}"
|
|
export LDFLAGS="-L${APPDIR}/usr/lib/x86_64-linux-gnu -L${APPDIR}/usr/lib"
|
|
|
|
exec "${APPDIR}/usr/bin/python3.7" -s "${APPDIR}/usr/bin/electrum" "$@"
|
|
|