correctly bail out on non-existing INI file
[pharext/pharext] / src / pharext / Installer.php
index a90eb28e9acc97350465be252d22d20589568a3d..29fe271c6bec2e9588b0cef342ba2d8bbeb8901d 100644 (file)
@@ -210,7 +210,7 @@ class Installer implements Command
 
        private function activate($temp) {
                if ($this->args->ini) {
-                       $files = [realpath($this->args->ini)];
+                       $files = [$this->args->ini];
                } else {
                        $files = array_filter(array_map("trim", explode(",", php_ini_scanned_files())));
                        $files[] = php_ini_loaded_file();