summaryrefslogtreecommitdiff
path: root/pear/scripts/pearcmd-package.php
diff options
context:
space:
mode:
Diffstat (limited to 'pear/scripts/pearcmd-package.php')
-rw-r--r--pear/scripts/pearcmd-package.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/pear/scripts/pearcmd-package.php b/pear/scripts/pearcmd-package.php
deleted file mode 100644
index 5cc485a937..0000000000
--- a/pear/scripts/pearcmd-package.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-include_once 'PEAR/Packager.php';
-$pkginfofile = isset($cmdargs[0]) ? $cmdargs[0] : null;
-$packager =& new PEAR_Packager($script_dir, $ext_dir, $doc_dir);
-$packager->setErrorHandling(PEAR_ERROR_DIE, "pear page: %s\n");
-$packager->debug = $verbose;
-if (PEAR::isError($packager->Package($pkginfofile))) {
- print "\npackage failed\n";
-} else {
- print "package ok\n";
-}
-
-
-?> \ No newline at end of file