Set ebookWwwFilesystemPath default to null

This commit is contained in:
Mike Colagrosso 2024-04-21 22:08:58 -06:00 committed by Alex Cabal
parent 8599dfcc09
commit 1e0d591066

View file

@ -2,17 +2,19 @@
<? <?
require_once('/standardebooks.org/web/lib/Core.php'); require_once('/standardebooks.org/web/lib/Core.php');
use function Safe\getopt;
$longopts = ['ebookWwwFilesystemPath:', 'verbose']; $longopts = ['ebookWwwFilesystemPath:', 'verbose'];
$options = getopt('v', $longopts); $options = getopt('v', $longopts);
$ebookWwwFilesystemPath = $options['ebookWwwFilesystemPath'] ?? false; $ebookWwwFilesystemPath = $options['ebookWwwFilesystemPath'] ?? null;
$verbose = false; $verbose = false;
if(isset($options['v']) || isset($options['verbose'])){ if(isset($options['v']) || isset($options['verbose'])){
$verbose = true; $verbose = true;
} }
if(!$ebookWwwFilesystemPath){ if($ebookWwwFilesystemPath === null){
print("Expected usage: update-ebook-database [-v,--verbose] --ebookWwwFilesystemPath <path>\n"); print("Expected usage: update-ebook-database [-v,--verbose] --ebookWwwFilesystemPath <path>\n");
exit(1); exit(1);
} }