Files
drunkendotfiles/install.sh
Volodymyr Shcherbinin (vovin) 225379192d Update Homebrew install method
2020-11-07 14:11:06 +02:00

12 lines
289 B
Bash
Executable File

#!/bin/sh
if [ ! -d "$HOME/.yadr" ]; then
echo "Installing YADR for the first time"
git clone --depth=1 https://github.com/skwp/dotfiles.git "$HOME/.yadr"
cd "$HOME/.yadr"
[ "$1" = "ask" ] && export ASK="true"
rake install
else
echo "YADR is already installed"
fi