diff --git a/assets/pipeline-test.yaml b/assets/pipeline-test.yaml index 1e45f8f..19c6171 100644 --- a/assets/pipeline-test.yaml +++ b/assets/pipeline-test.yaml @@ -20,7 +20,7 @@ pipeline: - if: #property의 내용은 기본 dynamic(Object)형으로써, 비교시 정확한 캐스팅 필요, 적지 않을시 기본 string condition-int: > - on-false: + on-true: - exe: zip commands: diff --git a/lib/oto/commands/command.dart b/lib/oto/commands/command.dart index 798313e..cd9a0c6 100644 --- a/lib/oto/commands/command.dart +++ b/lib/oto/commands/command.dart @@ -131,7 +131,7 @@ abstract class Command { _cache[param!] = _getTagValue(param); } var target = ''; - raw = raw.replaceAll(target, _cache[param]); + raw = raw.replaceAll(target, _cache[param].toString()); } return raw; }