Version 20230910.05. Install Lua utf8 library through warrior-install.sh.

This commit is contained in:
arkiver 2023-09-10 22:54:30 +02:00
parent 3add4f891c
commit a0e35bb72d
3 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1 @@
FROM atdr.meo.ws/archiveteam/grab-base
RUN luarocks install utf8

View File

@ -59,7 +59,7 @@ if not WGET_AT:
#
# Update this each time you make a non-cosmetic change.
# It will be added to the WARC files and reported to the tracker.
VERSION = '20230910.04'
VERSION = '20230910.05'
TRACKER_ID = 'reddit'
TRACKER_HOST = 'legacy-api.arpa.li'
MULTI_ITEM_SIZE = 100

6
warrior-install.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
echo "Installing lua-utf8..."
sudo luarocks install utf8 || exit 1
exit 0