more plugins disabled, as they're going to be hard to fix with the recent changes

also fix missing category from players-resonators dummy deleted plugin
This commit is contained in:
Jon Atkins
2013-12-01 18:37:14 +00:00
parent 9048c6d710
commit 70030998bf
9 changed files with 1087 additions and 1020 deletions

View File

@ -0,0 +1,21 @@
#!/bin/bash
if test -d ../broken
then
for a in *.js
do
if test -f ../$a
then
true
# echo $a already exists in ..
else
echo creating 'deleted' plugin from header of $a
sed -n -e 's/\@category.*/\@category Deleted/' -e 's/\@description .*/\@description PLUGIN CURRENTLY UNAVAILABLE/' -e 'p' -e '/\/UserScript/q' $a > ../$a
fi
done
else
echo error: wrong directory - must be run in plugins/broken
fi