Kaydet (Commit) cee337cf authored tarafından Jürgen Schmidt's avatar Jürgen Schmidt

#121#101# add workaround to avoid potential timing realted issue during packaging on windows

üst 78285a8e
...@@ -1189,6 +1189,9 @@ sub rename_directory ...@@ -1189,6 +1189,9 @@ sub rename_directory
my $infoline = ""; my $infoline = "";
# noticed problems under Windows from time to time that directories can't be moved, seems a timing issue
# workaround with sleep, should be investigated with a new packaging mechanism
sleep(2);
if ( move($olddir, $newdir) ) if ( move($olddir, $newdir) )
{ {
$infoline = "\nMoved directory from $olddir to $newdir\n"; $infoline = "\nMoved directory from $olddir to $newdir\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment