From e08de6dd2cf126bf7c4c8276ce80dfd955b05f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sun, 10 May 2020 22:15:06 -0700 Subject: [PATCH] Fixed GENie script when action is not specified. --- scripts/genie.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/genie.lua b/scripts/genie.lua index 357e40db2..6103b099c 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -122,7 +122,7 @@ solution "bgfx" "Release", } - if _ACTION:match "xcode*" then + if _ACTION ~= nil and _ACTION:match "xcode*" then platforms { "Universal", }