From 8eb1f8b95d4426183494f0d879f64738cad5961c Mon Sep 17 00:00:00 2001 From: Christian Fritz Date: Mon, 7 Dec 2015 19:56:33 -0800 Subject: [PATCH] Fixed an issue in the template for linux - there were spurious spaces in front of the exports that caused an error for me (surprised noone else reported that yet). --- templates/linux/env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/linux/env.sh b/templates/linux/env.sh index 6296156..9e9b1b6 100644 --- a/templates/linux/env.sh +++ b/templates/linux/env.sh @@ -5,5 +5,5 @@ export ROOT_URL=http://localhost #it is possible to override above env-vars from the user-provided values <% for(var key in env) { %> - export <%- key %>=<%- ("" + env[key]).replace(/./ig, '\\$&') %> +export <%- key %>="<%- ("" + env[key]).replace(/\"/ig, '\\$&') %>" <% } %>