Compare commits
No commits in common. "fea3a08bc71bff51bc13ec33cffa4023504ff3f2" and "ec154a046780f6235a5e4df3b57b491e67686c99" have entirely different histories.
fea3a08bc7
...
ec154a0467
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
(defn- link-config-file [src dest]
|
(defn- link-config-file [src dest]
|
||||||
;; make sure the parent directory of destination file exists
|
;; make sure the parent directory of destination file exists
|
||||||
(->> (fs/file) (fs/parent) (fs/path) (safe-sh-as-user "mkdir" "-p"))
|
(safe-sh-as-user "mkdir" "-p" dest)
|
||||||
(safe-sh-as-user "ln" "-fs" src dest))
|
(safe-sh-as-user "ln" "-fs" src dest))
|
||||||
|
|
||||||
(defn- link-config-files []
|
(defn- link-config-files []
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
(def toolbox-link "https://download-cdn.jetbrains.com/toolbox/jetbrains-toolbox-2.2.3.20090.tar.gz")
|
(def toolbox-link "https://download-cdn.jetbrains.com/toolbox/jetbrains-toolbox-2.2.3.20090.tar.gz")
|
||||||
|
|
||||||
(def http-toolkit-version "1.19.1")
|
(def http-toolkit-version "1.14.11")
|
||||||
(def http-toolkit-link (str "https://github.com/httptoolkit/httptoolkit-desktop/releases/download/v" http-toolkit-version "/HttpToolkit-linux-x64-" http-toolkit-version ".zip"))
|
(def http-toolkit-link (str "https://github.com/httptoolkit/httptoolkit-desktop/releases/download/v" http-toolkit-version "/HttpToolkit-linux-x64-" http-toolkit-version ".zip"))
|
||||||
|
|
||||||
(defn- install-application [link filename target-directory extract-command]
|
(defn- install-application [link filename target-directory extract-command]
|
||||||
|
|
Loading…
Reference in New Issue