From aedff3e3be65a2d25dd681844bdea6252dec2638 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 27 Jan 2017 09:03:30 -0800 Subject: [bin] Script to touch 'projectile' files in source. --- bin/touch-projects | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 bin/touch-projects (limited to 'bin/touch-projects') diff --git a/bin/touch-projects b/bin/touch-projects new file mode 100755 index 0000000..c7de34d --- /dev/null +++ b/bin/touch-projects @@ -0,0 +1,17 @@ +#!/bin/bash + +set -x +set -e + +SOURCE="${HOME}/src/source" + +PROJECTS=( + eventbus/read-proxy + eventbus/provisioning + monitoring-configs + src/python/twitter/messaging +) + +for project in "${PROJECTS[@]}"; do + touch ${SOURCE}/${project}/.projectile +done -- cgit 1.4.1