From d9b95fdfb4f888ba6da6c3f3f803f5376f83d918 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 21 Oct 2015 20:23:25 -0400 Subject: [PATCH] Add missing quotes to config.json template This commit adds a missing pair of quotes around the config.json template. The url isn't being treated as a string without the quotes, and we're getting json parsing errors. Change-Id: Ic6a435b3872de89801792296d19d98107e673e48 --- templates/config.json.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/config.json.erb b/templates/config.json.erb index c49a9ee..20bf73b 100644 --- a/templates/config.json.erb +++ b/templates/config.json.erb @@ -1,3 +1,3 @@ { - "apiRoot": <%= @api_endpoint %> + "apiRoot": "<%= @api_endpoint %>" }