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>2021-05-08 12:50:19 +0300
committerGitHub <noreply@github.com>2021-05-08 12:50:19 +0300
commita2fba718ba45219e6f02921f12aea8bb8042d92b (patch)
treee3701f64a74b561b725586f0885b241eccc63b54
parenta43f7c8c91d8183ee82132e09c3fe7e5649e7fe2 (diff)
parent2d5d3002346d92f923cd4c539dfbb705909c9b33 (diff)
Merge pull request #4501 from warwickmm/fix_typo_in_script_examples
Fix typo in example scripts
-rw-r--r--Duplicati/Library/Modules/Builtin/run-script-example.bat4
-rw-r--r--Duplicati/Library/Modules/Builtin/run-script-example.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/Duplicati/Library/Modules/Builtin/run-script-example.bat b/Duplicati/Library/Modules/Builtin/run-script-example.bat
index 818b11606..7f879f74c 100644
--- a/Duplicati/Library/Modules/Builtin/run-script-example.bat
+++ b/Duplicati/Library/Modules/Builtin/run-script-example.bat
@@ -67,7 +67,7 @@ REM will be ignored:
REM echo "Hello! -- test, this line is ignored"
REM echo --new-option=This will be a setting
-REM Filters are supplied in the DUPLICAT__FILTER variable.
+REM Filters are supplied in the DUPLICATI__FILTER variable.
REM The variable contains all filters supplied with --include and --exclude,
REM combined into a single string, separated with semicolon (;).
REM Filters set with --include will be prefixed with a plus (+),
@@ -204,4 +204,4 @@ GOTO end
REM We want the exit code to always report success.
REM For scripts that can abort execution, use the option
REM --run-script-on-start-required = <filename> when running Duplicati
-exit /B 0 \ No newline at end of file
+exit /B 0
diff --git a/Duplicati/Library/Modules/Builtin/run-script-example.sh b/Duplicati/Library/Modules/Builtin/run-script-example.sh
index 29d2357ac..2fbf4b344 100644
--- a/Duplicati/Library/Modules/Builtin/run-script-example.sh
+++ b/Duplicati/Library/Modules/Builtin/run-script-example.sh
@@ -66,7 +66,7 @@
# echo "Hello! -- test, this line is ignored"
# echo "--new-option=\"This will be a setting\""
-# Filters are supplied in the DUPLICAT__FILTER variable.
+# Filters are supplied in the DUPLICATI__FILTER variable.
# The variable contains all filters supplied with --include and --exclude,
# combined into a single string, separated with colon (:).
# Filters set with --include will be prefixed with a plus (+),
@@ -202,4 +202,4 @@ fi
# We want the exit code to always report success.
# For scripts that can abort execution, use the option
# --run-script-before-required = <filename> when running Duplicati
-exit 0 \ No newline at end of file
+exit 0