aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authororeodave <aryadevchavali1@gmail.com>2019-11-18 23:11:20 +0000
committeroreodave <aryadevchavali1@gmail.com>2019-11-18 23:11:20 +0000
commitb7218541343bd4aafd3ec0d5b9bd1980f22f129a (patch)
tree340e7918aa4f01465029e9c1427f1aaf8488ceb5 /install.sh
parentaed71004b9356f3101d32cbe62bdaa9f9a1e0b45 (diff)
downloaddotfiles-b7218541343bd4aafd3ec0d5b9bd1980f22f129a.tar.gz
dotfiles-b7218541343bd4aafd3ec0d5b9bd1980f22f129a.tar.bz2
dotfiles-b7218541343bd4aafd3ec0d5b9bd1980f22f129a.zip
+routine to clone templates to Projects/Templates
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 79180fe..8e3d177 100644
--- a/install.sh
+++ b/install.sh
@@ -18,3 +18,8 @@ mkdir ~/School;
touch ~/Text/notes.org;
touch ~/Text/todo.org;
touch ~/Text/calendar.org;
+
+declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" "NodeTemplate" "ArduinoTemplate");
+for template in ${templates[@]}; do
+ git clone https://github.com/Oreodave/$template ~/Projects/Templates/$template;
+done