mirror of
https://github.com/Bismuth-Forge/bismuth.git
synced 2024-11-03 19:41:22 +03:00
cf59968dca
fix: 📝 provide more feedback after installation
22 lines
500 B
Bash
22 lines
500 B
Bash
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2021 Mikhail Zolotukhin <mail@genda.life>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
set -e
|
|
|
|
# Download latest release
|
|
echo "🕸️ Downloading the latest Bismuth release..."
|
|
wget -q --output-document /tmp/bismuth.tar.gz https://github.com/gikari/bismuth/releases/latest/download/bismuth.tar.gz
|
|
|
|
# Extract it
|
|
echo "📦 Extracting..."
|
|
mkdir -p /tmp/bismuth
|
|
tar xf /tmp/bismuth.tar.gz --directory=/tmp/bismuth
|
|
|
|
# Install it
|
|
cd /tmp/bismuth
|
|
./install.sh
|
|
cd - > /dev/null
|