Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Execute conditions are specified in a scripting language, so %'s are not used when referring to FinalBuilder variables. For example, if you have a FB variable "PerformMerge" then you can simply specify PerformMerge and not %PerformMerge%. In the example above, previous actions should have set the PerformMerge variable to either True or False.

...

Code Block
languagevb
titleVBScript
PerformMerge = BuildType == "Full";
Code Block
languagejs
titleJavascript
PerformMerge = BuildType == "Full";
Code Block
languagepowershell
titlePowershell
$FBVariables.SetVariables($FBVariables.GetVariable("BuildType") -eq "Full")