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 Skovhede <kenneth@hexad.dk>2019-10-19 15:09:11 +0300
committerGitHub <noreply@github.com>2019-10-19 15:09:11 +0300
commit0e75611b34554181b9adfb7be8ccdd9a9843c8d4 (patch)
treeedba15147063db2881e39e5538441d83c6a7ae0c /Duplicati/CommandLine
parent880459d1b7ea17d8d91a47c3a20ad309eee519c4 (diff)
parentdf2904b781235d155ac255ef3c32d06dca6a21d8 (diff)
Merge pull request #3931 from warwickmm/fix_parameter_file_alias
Fix parameter file alias
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 ab81fc942..1cad210cf 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]))
{