From 633800cf4425e89ad3a6e4932a416e8b61d9903f Mon Sep 17 00:00:00 2001 From: OrangeEvan <495871401@163.com> Date: Mon, 23 Sep 2019 17:51:38 +0800 Subject: [PATCH 1/3] fixbug fix Dictionary missing ';' after key-value pair for "ORGANIZATIONNAME", found "@" (Nanaimo::Reader::ParseError) --- setup/ProjectManipulator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/ProjectManipulator.rb b/setup/ProjectManipulator.rb index ab35ba3a..ca63e167 100644 --- a/setup/ProjectManipulator.rb +++ b/setup/ProjectManipulator.rb @@ -19,7 +19,7 @@ def initialize(options) def run @string_replacements = { - "PROJECT_OWNER" => @configurator.user_name, + "PROJECT_OWNER" => "\"" + @configurator.user_name + "\"", "TODAYS_DATE" => @configurator.date, "TODAYS_YEAR" => @configurator.year, "PROJECT" => @configurator.pod_name, From 5725cf746f2849ea03560f39a732ea03dd4026a1 Mon Sep 17 00:00:00 2001 From: Huey Date: Mon, 2 Dec 2019 17:27:24 +0800 Subject: [PATCH 2/3] ():