ispconfig3_roundcube icon indicating copy to clipboard operation
ispconfig3_roundcube copied to clipboard

move all plugins to seperate github repos

Open horfic opened this issue 11 years ago • 1 comments

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

horfic avatar Jun 06 '13 08:06 horfic

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

vStone avatar Jan 17 '16 19:01 vStone