Changeset 12545 in osm for applications/editors/josm


Ignore:
Timestamp:
2008-12-24T16:58:42+01:00 (16 years ago)
Author:
joerg
Message:

get svnrevision the new way

File:
1 edited

Legend:

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

    r4308 r12545  
    1 svncorerevision=`svnversion core`
     1#!/bin/bash
     2# replace the revision number in debian/changelog to the last time this
     3# Subtree was modified
     4
     5svncorerevision=`svn info core | grep "Last Changed Rev" | sed 's/Last Changed Rev: //'`
    26svncorerevision=${svncorerevision/M/}
    3 svnpluginsrevision=`svnversion plugins`
     7svnpluginsrevision=`svn info plugins | grep "Last Changed Rev" | sed 's/Last Changed Rev: //'`
    48svnpluginsrevision=${svnpluginsrevision/M/}
    59svnrevision="$svncorerevision$svnpluginsrevision"
Note: See TracChangeset for help on using the changeset viewer.