Added implode command

This commit is contained in:
Joshua Bussdieker
2011-11-17 22:51:25 -08:00
parent fc1bd8c2c5
commit d65cb6b826
+4 -1
View File
@@ -1,9 +1,12 @@
if [[ $1 == "version" ]]; then
echo "Go Version Manager v$GVM_VERSION"
elif [[ $1 == "implode" ]]; then
rm -rf ~/.gvm
else
echo "== Usage
gvm Action
== Action
version - print the gvm version number"
version - print the gvm version number
implode - completely remove gvm"
fi