ispconfig3_roundcube
ispconfig3_roundcube copied to clipboard
move all plugins to seperate github repos
Is necessary to get support for the plugin system from roundcube version 1.0 which is based on composer
Infos on: http://plugins.roundcube.net and http://plugins.roundcube.net/about
find . -maxdepth 1 -type d -iname "ispconfig3*" | while read line; do repo=`basename $line`; ./split_folder.sh $repo; done;
split_folder.sh:
#!/bin/bash
repo=$1
branch=roundcube-${repo}
git subtree split --prefix=$repo -b $branch
git remote add $repo [email protected]:w2c/roundcube-$repo
git push -u $repo $branch:master