20 lines
469 B
Bash
Executable file
20 lines
469 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ ! -e ~/.cask ]]
|
|
then
|
|
echo "Cloning Cask repo"
|
|
git clone git@github.com:cask/cask.git ~/.cask
|
|
fi
|
|
|
|
if [[ $(grep "cask/bin" ~/.bash_profile) == "" ]]
|
|
then
|
|
echo "Adding \$HOME/.cask/bin to \$PATH in ~/.bash_profile"
|
|
echo '' >> ~/.bash_profile
|
|
echo "# Added by ~/.emacs.d/install.sh" >> ~/.bash_profile
|
|
echo "export PATH=\$HOME/.cask/bin:\$PATH" >> ~/.bash_profile
|
|
fi
|
|
|
|
export PATH=$HOME/.cask/bin:$PATH
|
|
|
|
cd ~/.emacs.d
|
|
cask install
|