assemblrr/platform/linux/bootstrap.sh
soulis-1256 15a929d2ef
Use lowercase assemblrr as the product name
Rename display branding and prose from Assemblrr to assemblrr for
a consistent identity across docs, CLI messages, and source comments.
2026-08-05 14:05:14 +03:00

14 lines
534 B
Bash

#!/bin/bash
set -euo pipefail
# assemblrr Bootstrap Script
# Clones the repository and launches setup.sh
# Usage (bash/zsh): bash <(curl -fsSL https://raw.githubusercontent.com/soulis-1256/assemblrr/main/platform/linux/bootstrap.sh)
# Usage (fish): bash (curl -fsSL https://raw.githubusercontent.com/soulis-1256/assemblrr/main/platform/linux/bootstrap.sh | psub)
REPO="https://github.com/soulis-1256/assemblrr"
TMPDIR=$(mktemp -d /tmp/assemblrr.XXXXXX)
git clone --depth=1 "$REPO" "$TMPDIR"
cd "$TMPDIR"
bash bin/setup.sh "$@"