From bd8f8e63023bd84bcaca28a22eda9049ec5cbcdd Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Tue, 27 Jan 2026 22:24:10 +0000 Subject: [PATCH] Switch install script and README URLs to GitHub Co-Authored-By: Claude Opus 4.5 --- README.md | 4 ++-- install.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a50551e..c410e37 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Build dependencies (needed to compile from source): Supports Arch, Fedora, and Debian/Ubuntu. Installs dependencies, Rust (if needed), builds from source, and installs to `/usr/local/bin/`: ```bash -curl -sSf https://gitea.jaidaken.dev/jaidaken/ferrosonic/raw/branch/master/install.sh | sh +curl -sSf https://github.com/jaidaken/ferrosonic/raw/branch/master/install.sh | sh ``` ### Manual Build @@ -60,7 +60,7 @@ curl -sSf https://gitea.jaidaken.dev/jaidaken/ferrosonic/raw/branch/master/insta If you prefer to build manually, install the dependencies listed above, then: ```bash -git clone https://gitea.jaidaken.dev/jaidaken/ferrosonic.git +git clone https://github.com/jaidaken/ferrosonic.git cd ferrosonic cargo build --release sudo cp target/release/ferrosonic /usr/local/bin/ diff --git a/install.sh b/install.sh index 0a98dc1..28cf8f7 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/bin/sh set -e -REPO="https://gitea.jaidaken.dev/jaidaken/ferrosonic.git" +REPO="https://github.com/jaidaken/ferrosonic.git" INSTALL_DIR="/usr/local/bin" echo "Ferrosonic installer"