diff --git a/home.admin/99clMenu.sh b/home.admin/99clMenu.sh index 4769f6c54..8bce06639 100644 --- a/home.admin/99clMenu.sh +++ b/home.admin/99clMenu.sh @@ -94,7 +94,7 @@ case $CHOICE in fi cd /home/bitcoin/suez || exit 1 echo - sudo -u bitcoin poetry run ./suez --client=c-lightning --client-args=--conf=${CLCONF} + sudo -u bitcoin poetry run /home/bitcoin/suez/suez --client=c-lightning --client-args=--conf=${CLCONF} echo echo "Press ENTER to return to main menu." read key diff --git a/home.admin/99lndMenu.sh b/home.admin/99lndMenu.sh index c98ded23d..6e58268a5 100644 --- a/home.admin/99lndMenu.sh +++ b/home.admin/99lndMenu.sh @@ -118,7 +118,7 @@ case $CHOICE in /home/admin/config.scripts/bonus.suez.sh on fi cd /home/bitcoin/suez || exit 1 - sudo -u bitcoin poetry run ./suez \ + sudo -u bitcoin poetry run /home/bitcoin/suez/suez \ --client-args=-n=${CHAIN} \ --client-args=--rpcserver=localhost:1${L2rpcportmod}009 echo diff --git a/home.admin/_commands.sh b/home.admin/_commands.sh index 990e7ea1b..9c2bc22bf 100755 --- a/home.admin/_commands.sh +++ b/home.admin/_commands.sh @@ -579,10 +579,10 @@ function suez() { clear echo "# Showing the channels of ${lightning} ${chain}net - consider reducing the font size (press CTRL- or CMD-)" if [ ${lightning} = cl ]; then - sudo -u bitcoin poetry run ./suez \ + sudo -u bitcoin poetry run /home/bitcoin/suez/suez \ --client=c-lightning --client-args=--conf=${CLCONF} elif [ ${lightning} = lnd ]; then - sudo -u bitcoin poetry run ./suez \ + sudo -u bitcoin poetry run /home/bitcoin/suez/suez \ --client-args=-n=${CHAIN} \ --client-args=--rpcserver=localhost:1${L2rpcportmod}009 fi