simple script that will look at bundle (when which is populated when we

move the extensions to pecl) and bundle the contents of that file
This commit is contained in:
Sterling Hughes 2003-06-07 17:06:42 +00:00
parent 106a277239
commit d5e1020714

8
bundle-release Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
EXTS=`cat .bundle`
PEAR=`which pear`
for i in $EXTS; do
$PEAR bundle $i
done