Browse Source

Fix minor issue when invoking Premake without an action.

pull/1507/head
Joao Matos 5 years ago
parent
commit
c443fe3355
  1. 4
      build/Helpers.lua

4
build/Helpers.lua

@ -94,6 +94,10 @@ local function get_build_dir() @@ -94,6 +94,10 @@ local function get_build_dir()
return _ARGS[1]
end
if not _ACTION then
return ""
end
return _ACTION == "gmake2" and "gmake" or _ACTION
end

Loading…
Cancel
Save