aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rwxr-xr-xinstall11
1 files changed, 6 insertions, 5 deletions
diff --git a/install b/install
index 52970bc..632360e 100755
--- a/install
+++ b/install
@@ -18,14 +18,15 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then
inst bashrc $WHOME/.bashrc
fi
-read -p "Install Bashrc to root? (Y/n) "
-if [[ $REPLY =~ ^[Yy]?$ ]]; then
- sudo inst bashrc /root/.bashrc
-fi
+# This doesn't work. sudo can't be called on function
+#read -p "Install Bashrc to root? (Y/n) "
+#if [[ $REPLY =~ ^[Yy]?$ ]]; then
+ #sudo inst bashrc /root/.bashrc
+#fi
read -p "Install GIT configuration? (Y/n) "
if [[ $REPLY =~ ^[Yy]?$ ]]; then
- sudo inst gitconfig $WHOME/.gitconfig
+ inst gitconfig $WHOME/.gitconfig
fi
read -p "Install VIM scripts? (Y/n) "