Move stow to bin and add argument count check
This commit is contained in:
parent
bc0a7fddde
commit
e6159e4f0d
@ -16,6 +16,11 @@ $action = 'stow';
|
||||
$backup = $force = false;
|
||||
array_shift($argv); // we don't care about the script name
|
||||
|
||||
if(count($argv) === 0) {
|
||||
line("Usage: stow [-u] [-b] [-f] <stow-directory>");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
while (str_starts_with($argv[0], '-')) {
|
||||
$option = substr($argv[0], 1);
|
||||
switch ($option) {
|
Loading…
x
Reference in New Issue
Block a user