Changeset 11668 in josm
- Timestamp:
- 2017-03-04T21:27:31+01:00 (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r11602 r11668 697 697 <echo message="Checking editor imagery difference"/> 698 698 <groovy src="scripts/SyncEditorLayerIndex.groovy" classpath="${dist.dir}/josm-custom.jar"> 699 < !--<arg value="-nomissingeli"/>-->699 <arg value="-noskip"/> 700 700 </groovy> 701 701 </target> -
trunk/scripts/SyncEditorLayerIndex.groovy
r11667 r11668 334 334 if (jd.isEmpty()) { 335 335 myprintln "- Missing JOSM date (${t}): ${getDescription(j)}" 336 } else if (t.isEmpty()) { 336 } else if (!ed.isEmpty()) { 337 myprintln "* Date differs (${t} != '${jd}'): ${getDescription(j)}" 338 } else if (!options.nomissingeli) { 337 339 myprintln "+ Missing ELI date ('${jd}'): ${getDescription(j)}" 338 } else {339 myprintln "* Date differs (${t} != '${jd}'): ${getDescription(j)}"340 340 } 341 341 }
Note:
See TracChangeset
for help on using the changeset viewer.