From 7ab8d86396cf84cfeedae086f261b9596691d748 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sun, 08 Feb 2026 01:15:14 +0000
Subject: [PATCH] Try to allow vcs rebuilds

---
 README.md |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/README.md b/README.md
index dd87bde..f3f0922 100644
--- a/README.md
+++ b/README.md
@@ -19,8 +19,8 @@
 ### From Source
 ```bash
 # Clone the repository
-git clone https://github.com/joelgrun/archbuild
-cd archbuild
+git clone https://github.com/joelgrun/archrepobuild
+cd archrepobuild
 
 # Set up virtual environment and install
 python -m venv .venv
@@ -39,7 +39,7 @@
 ```bash
 python scripts/build_binary.py
 ```
-The binary will be available at `dist/archbuild-bin`.
+The binary will be available at `dist/archrepobuild-bin`.
 
 ## Quick Start
 
@@ -51,22 +51,22 @@
 
 2. **Initialize repository**:
    ```bash
-   archbuild -c config.yaml init
+   archrepobuild -c config.yaml init
    ```
 
 3. **Add packages**:
    ```bash
-   archbuild add yay paru
+   archrepobuild add yay paru
    ```
 
 4. **Build all packages**:
    ```bash
-   archbuild build-all
+   archrepobuild build-all
    ```
 
 5. **Build a specific package**:
    ```bash
-   archbuild build <package>
+   archrepobuild build <package>
    ```
 
 ## Commands
@@ -112,26 +112,26 @@
 ## Migration from Bash Version
 
 ```bash
-archbuild migrate-config vars.sh -o config.yaml
+archrepobuild migrate-config vars.sh -o config.yaml
 ```
 
 ## Systemd Timer
 
-Create `/etc/systemd/system/archbuild.service`:
+Create `/etc/systemd/system/archrepobuild.service`:
 ```ini
 [Unit]
 Description=Build AUR packages
 
 [Service]
 Type=oneshot
-ExecStart=/usr/bin/archbuild -c /etc/archbuild/config.yaml build-all
+ExecStart=/usr/bin/archrepobuild -c /etc/archrepobuild/config.yaml build-all
 User=builduser
 ```
 
-Create `/etc/systemd/system/archbuild.timer`:
+Create `/etc/systemd/system/archrepobuild.timer`:
 ```ini
 [Unit]
-Description=Run archbuild daily
+Description=Run archrepobuild daily
 
 [Timer]
 OnCalendar=daily

--
Gitblit v1.10.0