From a79d2b3fa2deb1b5701bce6ef2a1b88420a8d134 Mon Sep 17 00:00:00 2001 From: Julian Prester Date: Sun, 7 Jun 2026 15:37:01 +1000 Subject: [PATCH] README: use curl+tar zip download instead of git clone Works on a fresh machine with no credentials or SSH keys configured. GitHub serves public archives without authentication. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4054f8..2674808 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Detection is in `lib/distro.sh`. It sets variables like `$PKG_INSTALL`, ## Quick Start ```bash -git clone https://git.julianprester.com/julianprester/linux-provision.git ~/linux-provision && bash ~/linux-provision/provision.sh --all +curl -fsSL https://github.com/julianprester/linux-provision/archive/refs/heads/main.tar.gz | tar -xz -C ~ --one-top-level=linux-provision --strip-components=1 && bash ~/linux-provision/provision.sh --all ``` Or run individual stages: