Address review comments to allow explicit test to both true and false
This commit is contained in:
parent
a443cd16ba
commit
58bf18d483
@ -2668,8 +2668,8 @@
|
||||
|
||||
|
||||
function m.fastUpToDateCheck(prj)
|
||||
if prj.fastuptodate == false then
|
||||
m.element("DisableFastUpToDateCheck", nil, "true")
|
||||
if prj.fastuptodate ~= nil then
|
||||
m.element("DisableFastUpToDateCheck", nil, iif(prj.fastuptodate, "false", "true"))
|
||||
end
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user