Ignore:
Timestamp:
2009-05-06T10:57:13+12:00 (15 years ago)
Author:
oranfry
Message:

improved error message after changed behavior

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/linux/wrapper.cpp

    r19034 r19327  
    3232    succeeded = ( 0 == system( ("mkdir " + tempdir).c_str() ) );
    3333    if ( !succeeded ) {
    34         cout << "Failed to write to create the temp directory '" << tempdir << "'" << endl;
    35         cout << "Check that it does not already exist and try again" << endl;
     34        cout << "Failed to create the temp directory '" << tempdir << "'. " <<
     35         "Check that it does not already exist. Also check that you have write " <<
     36         "permissions to '" << scratch << "', or set the environment variable TMPDIR to " <<
     37         "a directory where you do have write permissions." <<
     38         endl;
     39
    3640        cout << "Exiting" << endl;
    3741        return 1;
Note: See TracChangeset for help on using the changeset viewer.