From 7477621596369045552ba6e01ec0aa1067401500 Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Thu, 4 Sep 2025 06:16:43 +0000 Subject: [PATCH 1/3] Update Ahoy installation for ARM architecture --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 43e0607..6331330 100644 --- a/src/main.rs +++ b/src/main.rs @@ -190,8 +190,8 @@ fn main() -> Result<()> { println!("\n{} Installing Ahoy...", step_text("4."),); sh.change_dir(format!("/home/{username}")); - cmd!(sh, "sudo curl -LO https://github.com/ahoy-cli/ahoy/releases/download/v2.5.0/ahoy-bin-linux-amd64").run()?; - cmd!(sh, "mv ./ahoy-bin-linux-amd64 ./ahoy").run()?; + cmd!(sh, "sudo curl -LO https://github.com/ahoy-cli/ahoy/releases/download/v2.5.0/ahoy-bin-linux-arm64").run()?; + cmd!(sh, "mv ./ahoy-bin-linux-arm64 ./ahoy").run()?; cmd!(sh, "sudo chmod +x ./ahoy").run()?; println!("{}", success_text("✅ 4. Successfully installed Ahoy.")); From b6f07aa663bf6541b930ef093b4d915ef3d42c65 Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Thu, 4 Sep 2025 06:23:20 +0000 Subject: [PATCH 2/3] Revert last commit --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 6331330..43e0607 100644 --- a/src/main.rs +++ b/src/main.rs @@ -190,8 +190,8 @@ fn main() -> Result<()> { println!("\n{} Installing Ahoy...", step_text("4."),); sh.change_dir(format!("/home/{username}")); - cmd!(sh, "sudo curl -LO https://github.com/ahoy-cli/ahoy/releases/download/v2.5.0/ahoy-bin-linux-arm64").run()?; - cmd!(sh, "mv ./ahoy-bin-linux-arm64 ./ahoy").run()?; + cmd!(sh, "sudo curl -LO https://github.com/ahoy-cli/ahoy/releases/download/v2.5.0/ahoy-bin-linux-amd64").run()?; + cmd!(sh, "mv ./ahoy-bin-linux-amd64 ./ahoy").run()?; cmd!(sh, "sudo chmod +x ./ahoy").run()?; println!("{}", success_text("✅ 4. Successfully installed Ahoy.")); From 009e56b732838cf60315c7bde5bb8508bd4356e2 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Thu, 4 Sep 2025 09:46:29 -0400 Subject: [PATCH 3/3] docs: mention ARM support plan --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0de466c..ecabf6e 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,9 @@ > [!NOTE] > The `/etc/ckan/default/ckan.ini` config file will have its comments removed for now. There are plans to fix this in a future release of `ckan-devstaller`. +> [!NOTE] +> Currently `ckan-devstaller` supports x86 architecture. ARM support is planned. + You have two common options to choose from for installation. Paste one of the following scripts into your new Ubuntu 22.04 instance's terminal. ### Install with non-interactive mode (default config)