|
From: alex <bin...@li...> - 2001-07-11 22:02:02
|
alex Wed Jul 11 15:01:56 2001 EDT
Added files:
/r2/binarycloud/ext get_pear.sh
Log:
This is a shell script to get the PEAR cvs from cvs.php.net
(as I don't want to be in the habit of distro'ing pear!)
binarycloud will now assume that you have at least the core
PEAR components such as PEAR_Error.
Index: r2/binarycloud/ext/get_pear.sh
+++ r2/binarycloud/ext/get_pear.sh
#!/bin/sh
#
# Note that the php repository password is "phpfi"
# This will check out the entire PEAR tree (for the moment)
# to pwd/pear
#
cvs -d :pserver:cv...@cv...:/repository login
rm -rf pear/
cvs -d :pserver:cv...@cv...:/repository co pear
|