Just clone the repo to ~/.gvm to install

This commit is contained in:
Joshua Bussdieker
2011-11-17 22:14:55 -08:00
parent de20a95c22
commit 1ebd1826b8
2 changed files with 3 additions and 3 deletions
View File
+3 -3
View File
@@ -1,9 +1,9 @@
#!/bin/bash
GVM_DEST=~/.gvm
if [ -d $GVM_DEST ]; then
GVM_DEST=~
if [ -d $GVM_DEST/.gvm ]; then
echo "Already installed!"
else
echo "Installing"
mkdir $GVM_DEST
cd $GVM_DEST && git clone git://github.com/jbussdieker/gvm.git .gvm > /dev/null 2>&1
fi