9 lines
264 B
Bash
9 lines
264 B
Bash
echo "Installing git..."
|
|
sudo apt-get update > /dev/null
|
|
sudo apt-get install -y git > /dev/null
|
|
|
|
echo "Cloning stable OMAKUB..."
|
|
git clone -b stable https://github.com/basecamp/omakub.git ~/.local/share/omakub > /dev/null
|
|
|
|
source ~/.local/share/omakub/install.sh
|