diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-25 15:18:12 -0800 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-12-28 20:59:29 +0100 |
commit | beb51040c2e4c73c7f7d5fb3d45af4665a8107e2 (patch) | |
tree | 36677067675fd4a54b599df94c3cf91b2a455567 | |
parent | 8fc9d87b1b77e44a0fa45707e09c91465ecf261e (diff) | |
download | volse-hubzilla-beb51040c2e4c73c7f7d5fb3d45af4665a8107e2.tar.gz volse-hubzilla-beb51040c2e4c73c7f7d5fb3d45af4665a8107e2.tar.bz2 volse-hubzilla-beb51040c2e4c73c7f7d5fb3d45af4665a8107e2.zip |
util/dcp - argument warning when arguments are correct
-rwxr-xr-x | util/dcp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ require_once('include/attach.php'); cli_startup(); -if($argc <= 3) { +if($argc < 3) { echo "Usage: " . $argv[0] . ' src dstdir' . "\n"; echo 'Always run from the toplevel web directory.' . "\n"; echo 'destination should begin with store/$nickname/desired/path or $nickname/desired/path' . "\n"; |