aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index f10e0bc..52a7940 100644
--- a/install.sh
+++ b/install.sh
@@ -4,8 +4,8 @@ folders=`find . -maxdepth 1 -type 'd' -not -name '.git' -not -name '.'`;
# Symlink profiles
for pkg in $folders; do
- echo "Stowing " $pkg;
- stow $pkg
+ echo "Stowing " $pkg;
+ stow $pkg
done
# Generate folders
@@ -18,7 +18,7 @@ mkdir ~/School;
# get templates
declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate"
- "NodeTemplate" "ArduinoTemplate");
+ "NodeTemplate" "ArduinoTemplate");
for template in ${templates[@]}; do
- git clone https://github.com/odavep/$template ~/Code/Templates/$template;
+ git clone https://github.com/odavep/$template ~/Code/Templates/$template;
done