deploy: fix a typo

This commit is contained in:
E. S. 2025-05-02 22:41:18 +03:00
parent 1f2e75e6f4
commit 949bf0ebda

View File

@ -50,7 +50,7 @@ function usage(string $msg = ''): never {
if ($msg !== '')
fwrite(STDERR, "error: {$msg}\n");
$script = $GLOBALS['argv'][0];
fwrite(STDERR, "usage: {$script} --htdocs_dir DIR --commit-hash HASH\n");
fwrite(STDERR, "usage: {$script} --htdocs-dir DIR --commit-hash HASH\n");
exit(1);
}