From 37daa34d1021e7ff93d981f6b6e7f0b803f845bc Mon Sep 17 00:00:00 2001 From: openoms <43343391+openoms@users.noreply.github.com> Date: Wed, 26 Aug 2020 14:23:09 +0100 Subject: [PATCH] joinmarket: install with the joinmarket user related: https://github.com/rootzoll/raspiblitz/issues/1492 --- home.admin/config.scripts/bonus.joinmarket.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.admin/config.scripts/bonus.joinmarket.sh b/home.admin/config.scripts/bonus.joinmarket.sh index f6c14bb9a..fa3ac67bc 100644 --- a/home.admin/config.scripts/bonus.joinmarket.sh +++ b/home.admin/config.scripts/bonus.joinmarket.sh @@ -98,12 +98,12 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then echo "# installing JoinMarket" sudo -u joinmarket git clone https://github.com/Joinmarket-Org/joinmarket-clientserver cd joinmarket-clientserver - git reset --hard v0.7.0 + sudo -u joinmarket git reset --hard v0.7.0 # make install.sh set up jmvenv with -- system-site-packages sed -i "s#^ virtualenv -p \"\${python}\" \"\${jm_source}/jmvenv\" || return 1#\ virtualenv --system-site-packages -p \"\${python}\" \"\${jm_source}/jmvenv\" || return 1#g" \ install.sh - ./install.sh --with-qt + sudo -u joinmarket ./install.sh --with-qt echo "# installing python requirements to run the QT GUI on ARM" source jmvenv/bin/activate || exit 1