Changeset 5156 in osm


Ignore:
Timestamp:
2007-10-24T20:46:00+02:00 (17 years ago)
Author:
joerg
Message:

josm compile(nsis/debian): reduce verbosity while compiling

Location:
applications/editors/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/debian/make_install_files.sh

    r5126 r5156  
    3535echo "Compile Josm"
    3636cd core
    37 ant clean
    38 ant compile || exit -1
     37ant -q clean
     38ant -q compile || exit -1
    3939cd ..
    4040
    4141echo "Compile Josm Plugins"
    4242cd plugins
    43 ant clean
    44 ant build || exit -1
     43ant -q clean
     44ant -q dist|| exit -1
    4545cd ..
    4646
  • applications/editors/josm/nsis/josm-setup-unix.sh

    r5149 r5156  
    2222        echo "Compile Josm"
    2323        cd ../core
    24         ant clean
    25         ant compile || exit -1
     24        ant -q clean
     25        ant -q compile || exit -1
    2626        cd ..
    2727       
    2828        echo "Compile Josm Plugins"
    2929        cd plugins
    30         ant clean
    31         ant dist || exit -1
     30        ant -q clean
     31        ant -q dist || exit -1
    3232        ) || exit -1
    3333fi
Note: See TracChangeset for help on using the changeset viewer.