1d9b74bd66
The site is know just as "Tapas" since longer then Dosage has support for it. Since the module was merged just recently, this rename shouldn't affect many users...
17 lines
414 B
Bash
Executable file
17 lines
414 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2022 Tobias Gruetzmacher
|
|
# Copyright (C) 2019-2020 Daniel Ring
|
|
set -e
|
|
set -u
|
|
|
|
d=$(dirname $0)
|
|
if [ $# -ge 1 ]; then
|
|
list="$*"
|
|
else
|
|
list="arcamax comicfury comicgenesis comicskingdom creators gocomics keenspot tapas webcomicfactory"
|
|
fi
|
|
for script in $list; do
|
|
echo "Executing ${script}.py"
|
|
python3 "${d}/${script}.py"
|
|
done
|