From 7ff4f3b1d36894720806cea0260007519e329871 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 7 Jun 2016 17:01:16 +0200 Subject: [PATCH] Add upcoming profile option to choose between upload tools --- include/profiles | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/profiles b/include/profiles index ceae348f..fe44b060 100644 --- a/include/profiles +++ b/include/profiles @@ -279,6 +279,16 @@ UPLOAD_SERVER="${VALUE}" ;; + # Specify an alternative upload tool + upload-tool) + if [ -f "${VALUE}" ]; then UPLOAD_TOOL="${VALUE}"; fi + ;; + + # Specify arguments for an alternative upload tool + upload-tool-arguments) + UPLOAD_TOOL_ARGS="${VALUE}" + ;; + # Verbose output (--verbose) verbose) FIND=`echo "${VALUE}" | egrep "^(1|true|yes)"` && VERBOSE=1