From 8a39fbce4a6269d62e16afb297fe86076a825624 Mon Sep 17 00:00:00 2001 From: Flavio Poletti Date: Tue, 27 Aug 2013 14:59:39 +0200 Subject: [PATCH] added support for DEPLOYABLE_DISABLE_PASSTHROUGH --- remote | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote b/remote index 7190b2c..9ca6183 100755 --- a/remote +++ b/remote @@ -29,7 +29,7 @@ my $DATA_POSITION = tell DATA; # GLOBAL VARIABLE my %script_config = (%default_config, get_config()); my %config = %script_config; -if (! $config{passthrough}) { +if ($ENV{DEPLOYABLE_DISABLE_PASSTHROUGH} || (! $config{passthrough})) { my %cmdline_config; GetOptions( \%cmdline_config, -- 2.11.4.GIT