Changeset 147


Ignore:
Timestamp:
12/12/2006 19:01:04 (5 years ago)
Author:
ccowart
Message:

Added error checking on failed fetches of the export tarball.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/confman/confsync.sh

    r144 r147  
    2424# Set up our "Working Copy" 
    2525tarball=$(conf_fetch) 
     26if ! [ -s $tarball ] ; then 
     27    echo "Could not fetch the tarball." > &2 
     28    exit 1 
     29fi 
     30 
    2631tmpdir=$(mktemp -d -t confman) 
    2732 
Note: See TracChangeset for help on using the changeset viewer.