dosage/scripts/update_plugins.sh
2013-02-13 20:00:44 +01:00

20 lines
421 B
Bash
Executable file

#!/bin/sh
# Copyright (C) 2012-2013 Bastian Kleineidam
set -e
set -u
mincomics=100
d=$(dirname $0)
if [ $# -ge 1 ]; then
list="$*"
else
list="creators gocomics drunkduck keenspot smackjeeves arcamax comicfury"
fi
for script in $list; do
target="${d}/../dosagelib/plugins/${script}.py"
echo "Upating $target"
"${d}/removeafter.py" "$target" "# DO NOT REMOVE"
"${d}/${script}.py" $mincomics >> "$target"
done