963db7f448
Some things got lost on the way: - Since there is no comprehensive comic directory anymore, removed automatic update script. New comics need to be added manually. - Some authors used the opportunity to move from SmackJeeves somewhere else - some of those got new modules (either standalone or ComicFury) - Abunch of comics just disappeared...
16 lines
362 B
Bash
Executable file
16 lines
362 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2019 Tobias Gruetzmacher
|
|
set -e
|
|
set -u
|
|
|
|
d=$(dirname $0)
|
|
if [ $# -ge 1 ]; then
|
|
list="$*"
|
|
else
|
|
list="arcamax comicfury comicgenesis creators gocomics keenspot webcomicfactory comicskingdom"
|
|
fi
|
|
for script in $list; do
|
|
echo "Executing ${script}.py"
|
|
python3 "${d}/${script}.py"
|
|
done
|