rename install-rpm.sh to install-linux.sh

The script installs rpm, deb, and apk packages, so the rpm-specific name
was misleading. install-linux.sh reflects its actual Linux-wide scope.
This commit is contained in:
abuckit
2026-06-18 17:58:02 -04:00
parent 3fab64f1bf
commit 616eeea9a2
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -204,8 +204,8 @@ jobs:
- name: Publish install scripts
run: |
cp src/packaging/install-rpm.sh pages/install-rpm.sh
chmod +x pages/install-rpm.sh
cp src/packaging/install-linux.sh pages/install-linux.sh
chmod +x pages/install-linux.sh
- name: Write self-update checksum files
run: |
@@ -1,5 +1,5 @@
#!/bin/sh
# install-rpm.sh — Linux native-package installer helper for buckit.
# install-linux.sh — Linux native-package installer helper for buckit.
#
# Detects this host's package manager (dnf/yum/zypper, apt/dpkg, or apk),
# downloads the matching .rpm/.deb/.apk for the latest stable release,
@@ -8,7 +8,7 @@
# install (which needs root) is left to you to review and run.
#
# Usage:
# curl -fsSL https://buckit-io.github.io/buckit/install-rpm.sh | sh
# curl -fsSL https://buckit-io.github.io/buckit/install-linux.sh | sh
#
# Environment overrides:
# BUCKIT_PAGES_BASE gh-pages base URL
@@ -26,7 +26,7 @@ PAGES_BASE="${BUCKIT_PAGES_BASE:-https://buckit-io.github.io/buckit}"
RELEASE_BASE="${BUCKIT_RELEASE_BASE:-https://github.com/buckit-io/buckit/releases/download}"
err() {
echo "install-rpm.sh: $*" >&2
echo "install-linux.sh: $*" >&2
exit 1
}