File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 16
16
[boot.tmpdir :as tmpd]
17
17
[boot.util :as util]
18
18
[boot.from.io.aviso.exception :as ex]
19
- [boot.from.clojure.tools.cli :as cli])
19
+ [boot.from.clojure.tools.cli :as cli]
20
+ [boot.from.backtick :as bt])
20
21
(:import
21
22
[boot App]
22
23
[java.io File]
1078
1079
1079
1080
; ; Task Utility Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1080
1081
1082
+ (defmacro template
1083
+ " The syntax-quote (aka quasiquote) reader macro as a normal macro. Provides
1084
+ the unquote ~ and unquote-splicing ~@ metacharacters for templating forms
1085
+ without performing symbol resolution."
1086
+ [form]
1087
+ `(bt/template ~form))
1088
+
1081
1089
(defn gpg-decrypt
1082
1090
" Uses gpg(1) to decrypt a file and returns its contents as a string. The
1083
1091
:as :edn option can be passed to read the contents as an EDN form."
You can’t perform that action at this time.
0 commit comments