From: Sterling Hughes Date: Sat, 7 Jun 2003 17:06:42 +0000 (+0000) Subject: simple script that will look at bundle (when which is populated when we X-Git-Tag: RELEASE_1_0_2~365 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5e10207143a1224d969d9c22ffe35bda9c3d8ef;p=php 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 --- diff --git a/bundle-release b/bundle-release new file mode 100755 index 0000000000..b424ef3b61 --- /dev/null +++ b/bundle-release @@ -0,0 +1,8 @@ +#!/bin/sh + +EXTS=`cat .bundle` +PEAR=`which pear` + +for i in $EXTS; do + $PEAR bundle $i +done