Skip to content

Commit b4bc161

Browse files
committed
bump dependencies
1 parent cb71137 commit b4bc161

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ a boot task for spewing files into an S3 bucket.
44

55
[](dependency)
66
```clojure
7-
[tailrecursion/boot-bucket "2.1.1"] ;; latest release
7+
[tailrecursion/boot-bucket "2.1.2"] ;; latest release
88
```
99
[](/dependency)
1010

build.boot

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(require
77
'[adzerk.bootlaces :refer :all])
88

9-
(def +version+ "2.1.1")
9+
(def +version+ "2.1.2")
1010

1111
(bootlaces! +version+)
1212

src/tailrecursion/boot_bucket.clj

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
fut-paths (atom [])]
4242
(when (empty? src-files) (util/info "■ no changed files to upload\n"))
4343
(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)))
4848
(doseq [fut-path @fut-paths]
4949
(util/info "• %s\n" @fut-path))
5050
(boot/add-meta fileset (into {} (mapv #(vector (:path %) {::uploaded true}) src-files)))))))

0 commit comments

Comments
 (0)