diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-02-28 16:57:03 +0100 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2025-06-15 01:30:20 +0200 |
| commit | fe4d87fa7c06d23e758e3a321e04cca30419ed86 (patch) | |
| tree | e3e3287f92080e754870b8f3d396f1d298f377fd /Makefile | |
| parent | eb2d282a86f9a1895e091176f0c1fcf4df893fb0 (diff) | |
| download | haunt-blog-fe4d87fa7c06d23e758e3a321e04cca30419ed86.tar.gz haunt-blog-fe4d87fa7c06d23e758e3a321e04cca30419ed86.tar.bz2 haunt-blog-fe4d87fa7c06d23e758e3a321e04cca30419ed86.zip | |
Makefile: CONVERT: Add python-sh.
If we run the command mentionned in CONVERT we end up with the
following error:
$ guix shell -C \
python python-beautifulsoup4 python-html2text \
-- python3 convert.py
Traceback (most recent call last):
File "[...]/haunt-blog/convert.py", line 34, in <module>
import sh
ModuleNotFoundError: No module named 'sh'
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -15,7 +15,11 @@ CURL ?= curl BLOG_URL ?= https://blog.replicant.us/page -CONVERT ?= guix shell python python-beautifulsoup4 python-html2text -- python3 convert.py +CONVERT ?= guix shell \ + python python-beautifulsoup4 \ + python-html2text \ + python-sh \ + -- python3 convert.py SENTINEL = |
