From 8caeec05382ee2057f2338633285f1417fbf4540 Mon Sep 17 00:00:00 2001 From: Daniele Scasciafratte Date: Tue, 10 Sep 2024 12:54:37 +0200 Subject: [PATCH] Install from shell using curl fixed (#473) Seems that using the previous command the prompt is not working, with this version instead is executed and waited. Also I fixed the URL to the actual now so there isn't anymore a redirect. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7650fdb1..8dd6d757 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,12 @@ Make sure that the operating system meets the following prerequisites #### system-wide install ```bash -curl -s "https://raw.githubusercontent.com/Ph0enixKM/AmberNative/master/setup/install.sh" | /bin/bash +bash <(curl -s "https://raw.githubusercontent.com/amber-lang/amber/master/setup/install.sh") ``` #### local-user install ```bash -curl -s "https://raw.githubusercontent.com/Ph0enixKM/AmberNative/master/setup/install.sh" | /bin/bash -s -- --user +bash -- --user <(curl -s "https://raw.githubusercontent.com/amber-lang/amber/master/setup/install.sh") ``` #### Via a package manager