8 lines
274 B
Bash
8 lines
274 B
Bash
echo "Installing git..."
|
|
sudo apt-get update > /dev/null
|
|
sudo apt-get install -y git > /dev/null
|
|
|
|
echo "Cloning stable misebuntu..."
|
|
git clone -b v0.1 https://git.cbo.dk/rasmus/setup-ubuntu.git ~/.local/share/misebuntu > /dev/null
|
|
source ~/.local/share/misebuntu/install.sh
|