From bff43c3f9252e3133acedb9ccf4fb4f91d1c908d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 14 Jan 2022 02:35:39 +0200 Subject: [PATCH] Try to fix Sandstorm WeKan package. Thanks to xet7 ! Related https://github.com/wekan/wekan/issues/4280, related https://github.com/sandstorm-io/sandstorm/issues/3600 --- releases/rebuild-docs.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/releases/rebuild-docs.sh b/releases/rebuild-docs.sh index a9b85dd96..9ef1cfcec 100755 --- a/releases/rebuild-docs.sh +++ b/releases/rebuild-docs.sh @@ -21,7 +21,15 @@ if [ ! -d ~/python/esprima-python ]; then cd ~/python git clone --depth 1 -b master https://github.com/Kronuz/esprima-python cd ~/python/esprima-python - sudo pip3 install . + # a) Generating docs works on Kubuntu 21.10 with this, + # but generating Sandstorm WeKan package does not work + # https://github.com/wekan/wekan/issues/4280 + # https://github.com/sandstorm-io/sandstorm/issues/3600 + # sudo pip3 install . + # b) Generating docs Works on Linux Mint with this, + # and also generating Sandstorm WeKan package works: + # sudo python3 setup.py install --record files.txt + sudo python3 setup.py install --record files.txt fi # 2) Go to Wekan repo directory