remove python-is-python3, use python3

This commit is contained in:
nahuhh 2024-10-18 16:06:13 +00:00
parent a2e989a1ef
commit 10e81c85d1
3 changed files with 3 additions and 3 deletions

View file

@ -17,5 +17,5 @@ if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
fi
fi
. $SWAP_DATADIR/venv/bin/activate && python -V
. $SWAP_DATADIR/venv/bin/activate
$HOME/.local/bin/bsx/startup.sh

View file

@ -1,5 +1,5 @@
#!/bin/bash
. $SWAP_DATADIR/venv/bin/activate && python -V
. $SWAP_DATADIR/venv/bin/activate
if [[ $TAILS ]]; then
$HOME/.local/bin/bsx/tails_setup.sh
else

View file

@ -220,6 +220,6 @@ export particl_mnemonic=$particl_mnemonic
export xmrrestoreheight=$xmrrestoreheight
export tor_on=$tor_on
export TAILS=$TAILS
python -m venv "$SWAP_DATADIR/venv"
python3 -m venv "$SWAP_DATADIR/venv"
## Activate venv
$HOME/.local/bin/bsx/activate_venv.sh