From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 25 Dec 2022 19:18:05 +0000 (+0100)
Subject: Improve microblog.pub setup.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/booking/%7B%7Bdb.prefix%7D%7D/ledger?a=commitdiff_plain;h=70a753dc297327e3387471efdd998d25f1bba4dc;p=config

Improve microblog.pub setup.
---

diff --git a/bullseye/setup_scripts/setup_microblogpub.sh b/bullseye/setup_scripts/setup_microblogpub.sh
index 60f3c57..8066430 100755
--- a/bullseye/setup_scripts/setup_microblogpub.sh
+++ b/bullseye/setup_scripts/setup_microblogpub.sh
@@ -26,12 +26,13 @@ python_version=3.11.1
 python_dirname="Python-${python_version}"
 su -lc "wget https://www.python.org/ftp/python/${python_version}/${python_dirname}.tgz" plom
 su -lc "tar -xvf ${python_dirname}.tgz" plom
-su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test"
+# su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test"
+su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make"
 cd /home/plom/${python_dirname}/
 make altinstall
 cd
 # TODO delete python build dir
-su -lc "curl -sSL https://install.python-poetry.org | python3" - plom
+su -lc "curl -sSL https://install.python-poetry.org | python3.11" - plom
 su -lc "git clone https://git.sr.ht/~tsileo/microblog.pub testing.microblog.pub" - plom
 su -lc "poetry config installer.parallel false" - plom
 su -lc "cd testing.microblog.pub && poetry install" - plom