annotate scripts/hgall.groovy @ 219:efa545c6dd65

DEP-11: implement release process as gradle rule
author smith@nwoca.org
date Fri, 01 Jul 2016 20:56:04 +0100
parents f351338a3b3a
children
rev   line source
93
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
1
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
2 cmd = args ? args.join(' ') : 'out'
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
3
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
4 new File(".").eachDirRecurse { d ->
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
5
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
6 if ( new File(d,".hg").exists() ) {
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
7 println "$d.absolutePath: $cmd \n-----------------------------------"
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
8 println "hg -R ${d.absolutePath} ${cmd}".execute().text
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
9
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
10 }
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
11 }