Changeset 62526 in webkit


Ignore:
Timestamp:
Jul 5, 2010 11:29:08 PM (14 years ago)
Author:
Csaba Osztrogonác
Message:

2010-07-05 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by Eric Seidel.

REGRESSION(r60652): WebKitTools/Scripts/ensure-valid-python should cleanup temporary directory
https://bugs.webkit.org/show_bug.cgi?id=41612

  • Scripts/ensure-valid-python: File::Temp::tempdir call fixed.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r62518 r62526  
     12010-07-05  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        REGRESSION(r60652): WebKitTools/Scripts/ensure-valid-python should cleanup temporary directory
     6        https://bugs.webkit.org/show_bug.cgi?id=41612
     7
     8        * Scripts/ensure-valid-python: File::Temp::tempdir call fixed.
     9
    1102010-07-05  Adam Barth  <abarth@webkit.org>
    211
  • trunk/WebKitTools/Scripts/ensure-valid-python

    r60652 r62526  
    4343
    4444# We could use a consistent download location, like the source or build directory.
    45 my $tempDirectory = File::Temp->tempdir("WebKitPythonXXXX");
     45my $tempDirectory = File::Temp::tempdir("WebKitPythonXXXX", TMPDIR => 1, CLEANUP => 1);
    4646my $downloadDirectory = $tempDirectory;
    4747my $mountPoint = File::Spec->join($tempDirectory, "mount");
Note: See TracChangeset for help on using the changeset viewer.