From 6d43d1657515f9e3059f95d0aba8beb90d3f5da6 Mon Sep 17 00:00:00 2001 From: Sergey Abramchuk Date: Thu, 27 Sep 2018 16:41:22 +0300 Subject: [PATCH] Fix indentation in the template --- Scripts/vpn_profile_template.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Scripts/vpn_profile_template.erb b/Scripts/vpn_profile_template.erb index 7d9b346..6127a9d 100644 --- a/Scripts/vpn_profile_template.erb +++ b/Scripts/vpn_profile_template.erb @@ -13,6 +13,8 @@ struct VPNProfile { static let password = "<%= OPENVPN_PASSWORD %>" static let configuration = """ - <%= OPENVPN_CONFIGURATION %> +<% OPENVPN_CONFIGURATION.each_line do |line| %> + <%= line %> +<% end %> """ }