chore: remove not working anyway installation script

This commit is contained in:
Mikhail Zolotukhin 2021-11-02 22:57:59 +03:00
parent 8c3adf0130
commit 9be8ea40a6

View File

@ -1,21 +0,0 @@
#!/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