X-Git-Url: https://njoseph.me/gitweb/babashka-scripts.git/blobdiff_plain/0b0f2aa39a06e77b1517f895a2c82946f684b568..ead73d37568631a52a3759179a8fde48939d4afa:/update-babashka.clj diff --git a/update-babashka.clj b/update-babashka.clj index a449a7c..c122fb4 100755 --- a/update-babashka.clj +++ b/update-babashka.clj @@ -1,23 +1,20 @@ #! /usr/bin/env bb -(require '[clojure.java.shell :refer [sh]] - '[cheshire.core :as json] - '[babashka.curl :as curl] - '[babashka.fs :as fs]) +(require '[cheshire.core :as json] + '[org.httpkit.client :as http] + '[babashka.fs :as fs] + '[clojure.java.io :as io] + '[lib :refer [download-binary expand-home run-cmd]]) (defn babashka-latest-version [] - (-> (curl/get "https://api.github.com/repos/babashka/babashka/tags") + (-> @(http/get "https://api.github.com/repos/babashka/babashka/tags") :body (json/parse-string true) first :name (subs 1))) -(defn download-binary - [url destination] - (io/copy (:body (curl/get url {:as :stream})) (io/file destination))) - (defn get-download-url [version architecture] (str "https://github.com/babashka/babashka/releases/download/v" @@ -26,7 +23,7 @@ version "-" architecture - ".zip")) + ".tar.gz")) (defn check-latest [version] @@ -37,17 +34,21 @@ (defn download-latest [version architecture output] (let [url (get-download-url version architecture)] - (println (str "Latest version is " version)) (download-binary url output))) -(when (= *file* (System/getProperty "babashka.file")) - (let [architecture "linux-static-amd64" ;; TODO support multiple - ;; architectures - zip-file "babashka.zip" - destination (expand-home "~/bin/bb") +(defn update-babashka + [] + (let [architecture "linux-amd64" ;; TODO support other architectures + tarball "babashka.tar.gz" + destination (expand-home "~/bin") version (babashka-latest-version)] + (println (str "Latest version is " version)) (check-latest version) - (download-latest version architecture zip-file) - (extract-file-from-zip zip-file "bb" destination) - (fs/set-posix-file-permissions destination "rwxr-xr-x") - (io/delete-file zip-file))) + (println "Updating...") + (download-latest version architecture tarball) + (run-cmd ["tar" "-xzf" tarball "--directory" destination]) + (fs/set-posix-file-permissions (str destination "/bb") "rwxr-xr-x") + (io/delete-file tarball) + (println "Done!"))) + +(when (= *file* (System/getProperty "babashka.file")) (update-babashka))