Changeset 11668 in josm


Ignore:
Timestamp:
2017-03-04T21:27:31+01:00 (8 years ago)
Author:
stoecker
Message:

fix last changes

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r11602 r11668  
    697697        <echo message="Checking editor imagery difference"/>
    698698        <groovy src="scripts/SyncEditorLayerIndex.groovy" classpath="${dist.dir}/josm-custom.jar">
    699                 <!--<arg value="-nomissingeli"/>-->
     699                <arg value="-noskip"/>
    700700        </groovy>
    701701    </target>
  • trunk/scripts/SyncEditorLayerIndex.groovy

    r11667 r11668  
    334334                if (jd.isEmpty()) {
    335335                    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) {
    337339                    myprintln "+ Missing ELI date ('${jd}'): ${getDescription(j)}"
    338                 } else {
    339                     myprintln "* Date differs (${t} != '${jd}'): ${getDescription(j)}"
    340340                }
    341341            }
Note: See TracChangeset for help on using the changeset viewer.