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>2021-05-07 00:03:00 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2021-05-07 00:03:00 +0300
commit2d5d3002346d92f923cd4c539dfbb705909c9b33 (patch)
tree4bb0f48d2a76d583a19578ad6cadc65d5875c7fd
parent50ed059e11efeb73a5d0943f5349f64064e19c8c (diff)
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