This commit is contained in:
leedongmyung[desktop] 2023-11-25 22:10:46 +09:00
parent 0956b1320d
commit 689de0745e
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ pipeline:
- if:
#property의 내용은 기본 dynamic(Object)형으로써, 비교시 정확한 캐스팅 필요, 적지 않을시 기본 string
condition-int: <!property.git-count> > <!property.old-git-count>
on-false:
on-true:
- exe: zip
commands:

View file

@ -131,7 +131,7 @@ abstract class Command {
_cache[param!] = _getTagValue(param);
}
var target = '<!${param!}>';
raw = raw.replaceAll(target, _cache[param]);
raw = raw.replaceAll(target, _cache[param].toString());
}
return raw;
}