Changeset 3831

Show
Ignore:
Timestamp:
07/31/08 13:09:20 (4 years ago)
Author:
mrenzmann
Message:

Some time ago ath_info was moved to its own repository, and since then
gets pulled in by Subversion as external dependency. This adds some
more lines to the output of "svn status", which caused the check for
not yet committed changes in the local working copy to fail. These
lines are now filtered out to fix this issue.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • madwifi/trunk/scripts/make-release.bash

    r3830 r3831  
    9898 
    9999# check if local working copy has uncommitted changes 
    100 if [[ ! -z "$(svn status)" ]]; then 
     100changes="$(svn status | sed -e "/^X/d" -e "/^$/d" -e "/external item/d")" 
     101if [[ ! -z "$changes" ]]; then 
    101102        echo 
    102103        echo "ERROR:"