bug fixed

This commit is contained in:
leedongmyung[desktop] 2023-11-25 22:45:38 +09:00
parent 6bdb341f88
commit f4c8bdba27

View file

@ -58,7 +58,7 @@ class PipelineIf extends PipelineExecutor {
@override
Future execute() async {
var result = checkCondition(_data.condition!);
await CLI.println('[IF] (${result.conditionValue}) : ${result.result}',
await CLI.println('^"[IF] (${result.conditionValue}) : ${result.result}"',
color: Color.magentaStrong);
if (result.result) {
await _pipelineTrue?.execute();