annotate scripts/hgcommit.groovy @ 361:7b6d30651db7
Cygwin has an ENV that container 'CI'. Causing build issues. Just check for 'github' to determine if it is a local build
author |
davis@ssdt-ohio.org |
date |
Thu, 16 Nov 2023 15:52:40 -0500 |
parents |
f351338a3b3a |
children |
|
rev |
line source |
93
|
1
|
|
2 comment = args ? args.join(' ') : 'out'
|
|
3
|
|
4 new File(".").eachDirRecurse { d ->
|
|
5
|
|
6 if ( new File(d,".hg").exists() ) {
|
|
7 println "$d.absolutePath: $comment \n-----------------------------------"
|
|
8 println "hg -R ${d.absolutePath} commit -m \"${comment}\"".execute().text
|
|
9
|
|
10 }
|
|
11 } |