Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2019-09-30 05:13:55 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2019-09-30 05:17:38 +0300
commitdf2904b781235d155ac255ef3c32d06dca6a21d8 (patch)
tree9a2e19b9d76f72030de05b56ce045dfec928faa0 /Duplicati/CommandLine
parentc412bc9cae0db9780f7c219bed34c17bef5ef1c8 (diff)
Fix parameter file alias.
The code that parsed the parameter file aliases was improved in pull request #3229. In doing so, we accidentally omitted one of the previously accepted aliases.
Diffstat (limited to 'Duplicati/CommandLine')
-rw-r--r--Duplicati/CommandLine/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/CommandLine/Program.cs b/Duplicati/CommandLine/Program.cs
index 517cb0402..21d0b9c15 100644
--- a/Duplicati/CommandLine/Program.cs
+++ b/Duplicati/CommandLine/Program.cs
@@ -155,7 +155,7 @@ namespace Duplicati.CommandLine
}
// try and parse all parameter file aliases
- foreach (string parameterOption in new[] { "parameters-file", "parameters-file", "parameterfile" })
+ foreach (string parameterOption in new[] { "parameters-file", "parameter-file", "parameterfile" })
{
if (options.ContainsKey(parameterOption) && !string.IsNullOrEmpty(options[parameterOption]))
{