From 689de0745eb90f3f9fa030710e2f0ffe53297f8d Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 25 Nov 2023 22:10:46 +0900 Subject: [PATCH] test --- assets/pipeline-test.yaml | 2 +- lib/oto/commands/command.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }