summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2007-11-23 04:27:41 +0000
committerGreg Beaver <cellog@php.net>2007-11-23 04:27:41 +0000
commit99f191d76d7ad7db3a1e2bc9521fa4746ab3ebe7 (patch)
tree63b2ec02f1c49c559ddea06d1ce26a6f17a1c290
parent73a76cefc238702631a1c19af9d201c5927df59b (diff)
downloadphp-git-99f191d76d7ad7db3a1e2bc9521fa4746ab3ebe7.tar.gz
fix missing /
-rwxr-xr-xext/phar/phar.pharbin52297 -> 25195 bytes
-rwxr-xr-xext/phar/phar/clicommand.inc2
2 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/phar.phar b/ext/phar/phar.phar
index 793e7189e8..47c571578a 100755
--- a/ext/phar/phar.phar
+++ b/ext/phar/phar.phar
Binary files differ
diff --git a/ext/phar/phar/clicommand.inc b/ext/phar/phar/clicommand.inc
index 84369a6b6f..067456d691 100755
--- a/ext/phar/phar/clicommand.inc
+++ b/ext/phar/phar/clicommand.inc
@@ -219,7 +219,7 @@ abstract class CLICommand
if ($f === false) {
self::error("Path for file '$arg' does not exist.\n");
}
- return $f . basename($arg);
+ return $f . '/' . basename($arg);
}
static function cli_arg_typ_filecont($arg, $cfg, $key)