Skip to content
Snippets Groups Projects
Commit 2b5f2dba authored by Demian Katz's avatar Demian Katz
Browse files

More flexible handling of --use-default switch.

parent 9527bb70
Branches
Tags
No related merge requests found
...@@ -32,7 +32,7 @@ $basePath = '/vufind'; ...@@ -32,7 +32,7 @@ $basePath = '/vufind';
echo "VuFind has been found in {$baseDir}.\n\n"; echo "VuFind has been found in {$baseDir}.\n\n";
if (!isset($argv[1]) || $argv[1] != '--use-defaults') { if (!isset($argv[1]) || !in_array('--use-defaults', $argv)) {
// Get override directory path: // Get override directory path:
while (true) { while (true) {
$overrideDirInput = getInput( $overrideDirInput = getInput(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment