44af7acdbc
Mostly getting rid of vanished comics, but also cleaning up the matching expressions a bit.
19 lines
453 B
Bash
Executable file
19 lines
453 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2019 Tobias Gruetzmacher
|
|
set -e
|
|
set -u
|
|
|
|
mincomics=100
|
|
d=$(dirname $0)
|
|
|
|
if [ $# -ge 1 ]; then
|
|
list="$*"
|
|
else
|
|
list="arcamax comicfury comicgenesis creators gocomics keenspot smackjeeves webcomicfactory comicskingdom"
|
|
fi
|
|
for script in $list; do
|
|
target="${d}/../dosagelib/plugins/${script}.py"
|
|
echo "Upating $target"
|
|
python3 "${d}/${script}.py" $mincomics "$target"
|
|
done
|