Skip to content

Commit b2fc549

Browse files
committed
[BUG] allow setting composer variable to nil
Signed-off-by: Mark Sandell <mdsandell@gmail.com>
1 parent b6b4bf4 commit b2fc549

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

composer.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ lib.printMemUsage = function()
16011601
end
16021602

16031603
lib.setVariable = function( key, value )
1604-
if nil ~= key and nil ~= value then
1604+
if nil ~= key then
16051605
lib.variables[ key ] = value
16061606
end
16071607
end

0 commit comments

Comments
 (0)