-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Non valued build variable bugfix (#441)
Non valued build variables could incorrectly be created when specifying a variable's value be "" (var_dict.SetValue("VAR_NAME", "", "Comment")). Non-valued build variables should only be created when setting a build variables value to None: (var_dict.SetValue("VAR_NAME", None, "Comment)). This commit fixes the check to only create a non-valued build variable when the variable value is None.
- Loading branch information
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters