Address review comments to allow explicit test to both true and false

This commit is contained in:
Nicholaus Clark 2021-03-10 21:01:21 -05:00
parent a443cd16ba
commit 58bf18d483

View File

@ -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