1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfile-automator/install.sh

21 lines
378 B
Bash
Raw Permalink Normal View History

2016-01-05 21:35:49 +00:00
#!/usr/bin/bash
set -e
if [ ! -f ./setup.py ]; then
echo ">> Cloning repo..."
git clone https://github.com/RealOrangeOne/dotfile-automator.git
cd yoga-pal
fi
echo ">> Building Virtualenv..."
pyvenv env
echo ">> Building Application..."
env/bin/python3 setup.py develop
echo ">> Installing Application..."
sudo pip install -e .
echo ">> Installation Complete!"