From 33303ccd24c55eb34051b25e2a406bba5510c749 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Er=20Galv=C3=A3o=20Abbott?= Date: Wed, 3 Jul 2024 15:35:37 -0300 Subject: [PATCH] Fixing the URL for fetching jb-cat, jb-echo and jb-stream (the bin folder was missing) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed48805..c4a80af 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ source json.bash; alias jb=json jb-array=json.array # Optional: if you'd also like jb-echo, jb-cat, jb-stream for name in jb-echo jb-cat jb-stream; do - curl -fsSL -O "https://raw.githubusercontent.com/h4l/json.bash/HEAD/${name:?}" + curl -fsSL -O "https://raw.githubusercontent.com/h4l/json.bash/HEAD/bin/${name:?}" chmod +x "${name:?}" done ```