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
This commit is contained in:
Matthew Treinish 2015-10-21 20:23:25 -04:00
parent 40e79ffdbb
commit d9b95fdfb4
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
{
"apiRoot": <%= @api_endpoint %>
"apiRoot": "<%= @api_endpoint %>"
}