Francois Gouget : testbot/lib: Move staging files into place rather than copying them.

Alexandre Julliard julliard at winehq.org
Fri May 16 12:11:35 CDT 2014


Module: tools
Branch: master
Commit: 71b945c8e59daf1139241ffaf1b1882a7b0573ae
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=71b945c8e59daf1139241ffaf1b1882a7b0573ae

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri May 16 15:50:09 2014 +0200

testbot/lib: Move staging files into place rather than copying them.

---

 testbot/lib/WineTestBot/Steps.pm |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/testbot/lib/WineTestBot/Steps.pm b/testbot/lib/WineTestBot/Steps.pm
index bd60ed1..0431bc0 100644
--- a/testbot/lib/WineTestBot/Steps.pm
+++ b/testbot/lib/WineTestBot/Steps.pm
@@ -77,11 +77,10 @@ sub HandleStaging
                       "/$BaseName";
   mkdir "$DataDir/jobs/$JobKey";
   mkdir "$DataDir/jobs/$JobKey/" . $self->GetKey();
-  if (!copy($StagingFileName, $FinalFileName))
+  if (!move($StagingFileName, $FinalFileName))
   {
-    return "Can't move the staging file: $!";
+    return "Could not move the staging file: $!";
   }
-  unlink($StagingFileName);
 
   $self->FileName($BaseName);
   $self->InStaging(!1);




More information about the wine-cvs mailing list