summaryrefslogtreecommitdiffstats
path: root/dependencyinjection
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-02-11 16:26:39 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-02-11 16:26:39 +0100
commite6991aa355c8318f362aeabec21fda2cb1874853 (patch)
treee78947a22ce4c0a5b691b1f0d211de9bb312afd6 /dependencyinjection
parentc0ddb8c7b13e9f1908014b49805c606018165135 (diff)
version bump1.806
Diffstat (limited to 'dependencyinjection')
0 files changed, 0 insertions, 0 deletions
n/sh\nmuchsync --upbg -r " << opt_remote_muchsync_path;
+ of << "#!/bin/sh\nmuchsync --nonew --upbg -r " << opt_remote_muchsync_path;
for (int i = 0; i < ac; i++)
of << ' ' << av[i];
of << " --new" << flush;
@@ -561,7 +561,7 @@ enum opttag {
OPT_UPBG,
OPT_NOUP,
OPT_HELP,
- OPT_NEW,
+ OPT_NONEW,
OPT_INIT
};
@@ -572,7 +572,7 @@ static const struct option muchsync_options[] = {
{ "upbg", no_argument, nullptr, OPT_UPBG },
{ "noup", no_argument, nullptr, OPT_NOUP },
{ "noupload", no_argument, nullptr, OPT_NOUP },
- { "new", no_argument, nullptr, OPT_NEW },
+ { "nonew", no_argument, nullptr, OPT_NONEW },
{ "init", required_argument, nullptr, OPT_INIT },
{ "config", required_argument, nullptr, 'C' },
{ "help", no_argument, nullptr, OPT_HELP },
@@ -622,8 +622,8 @@ main(int argc, char **argv)
case OPT_NOUP:
opt_noup = true;
break;
- case OPT_NEW:
- opt_new = true;
+ case OPT_NONEW:
+ opt_nonew = true;
break;
case OPT_INIT:
opt_init = true;