File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ a boot task for spewing files into an S3 bucket.
4
4
5
5
[ ] ( dependency )
6
6
``` clojure
7
- [tailrecursion/boot-bucket " 2.1.1 " ] ; ; latest release
7
+ [tailrecursion/boot-bucket " 2.1.2 " ] ; ; latest release
8
8
```
9
9
[ ] ( /dependency )
10
10
Original file line number Diff line number Diff line change 6
6
(require
7
7
'[adzerk.bootlaces :refer :all ])
8
8
9
- (def +version+ " 2.1.1 " )
9
+ (def +version+ " 2.1.2 " )
10
10
11
11
(bootlaces! +version+)
12
12
Original file line number Diff line number Diff line change 41
41
fut-paths (atom [])]
42
42
(when (empty? src-files) (util/info " ■ no changed files to upload\n " ))
43
43
(doseq [{:keys [dir path]} src-files]
44
- (->> (tailrecursion.boot-bucket.client/put-file! ~opts ~(.getPath dir) ~path
45
- (pod/with-call-in pod)
46
- (future )
47
- (swap! fut-paths conj) )))
44
+ (->> (tailrecursion.boot-bucket.client/put-file! ~opts ~(.getPath dir) ~path)
45
+ (pod/with-call-in pod)
46
+ (future )
47
+ (swap! fut-paths conj)))
48
48
(doseq [fut-path @fut-paths]
49
49
(util/info " • %s\n " @fut-path))
50
50
(boot/add-meta fileset (into {} (mapv #(vector (:path %) {::uploaded true }) src-files)))))))
You can’t perform that action at this time.
0 commit comments