From 99e7afc610873d0259afec7685c93f444565c4b6 Mon Sep 17 00:00:00 2001 From: arookas Date: Fri, 19 Feb 2016 14:04:40 -0500 Subject: [PATCH] Minor cleanup --- premake5.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/premake5.lua b/premake5.lua index fcf3cc6..a5e0fe0 100644 --- a/premake5.lua +++ b/premake5.lua @@ -65,8 +65,8 @@ workspace "ssc" prebuildcommands { -- regenerate grammatica classes before compilation begins - "{CHDIR} \"%{prj.location}\"", - "java -jar grammatica.jar \"sunscript.grammar\" --csoutput \".\\generated\" --csnamespace \"arookas\" --csclassname \"__sun\"", + '{CHDIR} "%{prj.location}"', + 'java -jar grammatica.jar "sunscript.grammar" --csoutput ".\\generated" --csnamespace "arookas" --csclassname "__sun"', } -- frontend project (example command-line interface) @@ -90,8 +90,8 @@ workspace "ssc" postbuildcommands { -- copy stdlib to frontend output so users can import the scripts - "{RMDIR} \"%{cfg.buildtarget.directory}ssc\"", - "{COPY} \"%{wks.location}stdlib\" \"%{cfg.buildtarget.directory}ssc\"", + '{RMDIR} "%{cfg.buildtarget.directory}ssc"', + '{COPY} "%{wks.location}stdlib" "%{cfg.buildtarget.directory}ssc"', } -- sbdump utility