We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787eb2f commit 90d71ccCopy full SHA for 90d71cc
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Fix custom tools to support argument numbers.
6
+
7
## 0.84.2
8
9
- Fix `${netrc:...} ` to consider `:netrcFile` config properly.
src/eca/features/tools/custom.clj
@@ -16,7 +16,7 @@
16
(fn [args {:keys [db]}]
17
(let [resolved-command (reduce
18
(fn [s [arg-name arg-value]]
19
- (string/replace s (str "{{" arg-name "}}") arg-value))
+ (string/replace s (str "{{" arg-name "}}") (str arg-value)))
20
command
21
args)
22
work-dir (some-> (:workspace-folders db)
0 commit comments