diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-25 15:18:12 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-25 15:18:12 -0800 |
commit | b507ac1f98e135d9eb85cba4297f02b10ccc3217 (patch) | |
tree | 36a2f0e9eea583c9454e077dbd6d523d9bd8d208 /util | |
parent | 601706b7b5404df97a8e14eb2544d97aaea69f6d (diff) | |
download | volse-hubzilla-b507ac1f98e135d9eb85cba4297f02b10ccc3217.tar.gz volse-hubzilla-b507ac1f98e135d9eb85cba4297f02b10ccc3217.tar.bz2 volse-hubzilla-b507ac1f98e135d9eb85cba4297f02b10ccc3217.zip |
util/dcp - argument warning when arguments are correct
Diffstat (limited to 'util')
-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"; |