From 8c82fb1d17afaeacfbc78b3b39e559af0cf7542d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 12 Dec 2014 09:42:47 +0100 Subject: checkpkgist: accept a path as pasckage name --- checkpkgist.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'checkpkgist.php') diff --git a/checkpkgist.php b/checkpkgist.php index e3cf4f2..5a37bfc 100755 --- a/checkpkgist.php +++ b/checkpkgist.php @@ -196,6 +196,9 @@ printf(" %-40s %15s %15s %15s\n", "Name", "Version", "Upstream", "Date"); $tmp = array(); for ($i=1 ; $i<$_SERVER['argc'] ; $i++) { + if (is_dir($_SERVER['argv'][$i])) { + $_SERVER['argv'][$i] = basename(realpath($_SERVER['argv'][$i])); + } $k = array_search($_SERVER['argv'][$i], $pkgs); if ($k) { $tmp[$k] = $pkgs[$k]; -- cgit