From 6852645875020b8927896ec493074c63ce408f74 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Sat, 10 Aug 2019 20:42:37 +0200 Subject: [PATCH] adapt example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b3672846..954f4131 100644 --- a/README.md +++ b/README.md @@ -153,15 +153,15 @@ $ curl -s https://api.github.com/repos/borkdude/babashka/tags \ "0.0.4" ``` -### Download latest linux version of babashka +### Download latest OS-specific version of babashka ``` shellsession $ curl -s https://api.github.com/repos/borkdude/babashka/releases \ | jet --from json --keywordize \ | bb '(-> *in* first :assets)' \ | bb '(keep #(re-find #"^.*linux.*" (:browser_download_url %)) *in*)' \ -| bb -o '(first *in*)' \ -| xargs -n1 curl -sL > /tmp/bb +| bb '(first *in*)' \ +| xargs -n1 curl -sL > /tmp/bb-linux.zip ``` ## License