Changeset 1363


Ignore:
Timestamp:
Jun 5, 2011, 1:48:20 AM (12 years ago)
Author:
Peter Johansson
Message:

revert wc prior update in svn_update script and exit (with error) if svn command failed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/svn_update.sh.in

    r1280 r1363  
    2727if test ! -e $rootdir; then
    2828    repo="@abs_test_repo@";
    29     $SVN checkout file://$repo/trunk $rootdir;
     29    $SVN checkout file://$repo/trunk $rootdir || exit 1;
    3030fi
    3131
    32 $SVN update $rootdir
     32$SVN revert --recursive $rootdir || exit 1
     33$SVN update $rootdir || exit 1
     34exit 0
Note: See TracChangeset for help on using the changeset viewer.