]> granicus.if.org Git - php/commitdiff
simple script that will look at bundle (when which is populated when we
authorSterling Hughes <sterling@php.net>
Sat, 7 Jun 2003 17:06:42 +0000 (17:06 +0000)
committerSterling Hughes <sterling@php.net>
Sat, 7 Jun 2003 17:06:42 +0000 (17:06 +0000)
move the extensions to pecl) and bundle the contents of that file

bundle-release [new file with mode: 0755]

diff --git a/bundle-release b/bundle-release
new file mode 100755 (executable)
index 0000000..b424ef3
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+EXTS=`cat .bundle`
+PEAR=`which pear`
+
+for i in $EXTS; do
+       $PEAR bundle $i
+done