diff options
author | Mark Raynsford <[email protected]> | 2012-11-15 17:01:27 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-12-25 10:08:44 +0100 |
commit | 211a57c514d72735a54cd95826e9da1f915aec76 (patch) | |
tree | beebcdb860cd87b1aa71d66c179e408d9598f4d3 /maven/make-poms.sh | |
parent | fec3baf2834693e27666391aadc70e3e2e472b8c (diff) |
Abstract reading of make-projects.txt with make-list-projects.sh in order to allow for comments in the file
Conflicts:
maven/make-copy-jars.sh
maven/make-deploy-one.sh
maven/make-projects.txt
Diffstat (limited to 'maven/make-poms.sh')
-rwxr-xr-x | maven/make-poms.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maven/make-poms.sh b/maven/make-poms.sh index 233b01c..568e840 100755 --- a/maven/make-poms.sh +++ b/maven/make-poms.sh @@ -9,7 +9,7 @@ fi VERSION="$1" shift -PROJECTS=`cat make-projects.txt | awk -F: '{print $1}'` || exit 1 +PROJECTS=`./make-list-projects.sh | awk -F: '{print $1}'` || exit 1 for PROJECT in ${PROJECTS} do |