|
Revision 1999, 182 bytes
(checked in by mheydon1973, 7 years ago)
|
* Import now uses 'current' branch for modules (as per new setting in 'modlist.sh')
* Added 'remove.sh' to remove the local modules folders
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
. ./modlist.sh |
|---|
| 4 |
|
|---|
| 5 |
for modname in $FREEPBX_MODLIST |
|---|
| 6 |
do |
|---|
| 7 |
echo $modname |
|---|
| 8 |
svn co https://svn.sourceforge.net/svnroot/amportal/modules/branches/$FREEPBX_MODBRANCH/$modname |
|---|
| 9 |
done |
|---|