summary refs log tree commit diff
path: root/bin/touch-projects
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xbin/touch-projects19
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/touch-projects b/bin/touch-projects
deleted file mode 100755
index 28f0819..0000000
--- a/bin/touch-projects
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-set -x
-set -e
-
-SOURCE="${HOME}/src/source"
-
-PROJECTS=(
-  eventbus/read-proxy
-  eventbus/provisioning
-  monitoring-configs
-  src/python/twitter
-  distributedlog
-  kestrel
-)
-
-for project in "${PROJECTS[@]}"; do
-  touch ${SOURCE}/${project}/.projectile
-done