annotate scripts/hgcommit.groovy @ 307:f8329b51b6e6

more printlns
author Marc Davis <davis@ssdt-ohio.org>
date Wed, 01 Feb 2023 08:41:24 -0500
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 comment = 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: $comment \n-----------------------------------"
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
8 println "hg -R ${d.absolutePath} commit -m \"${comment}\"".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 }