From aea92cf640488646aa8c1fa748b82d8d39e8cac9 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Thu, 2 Mar 2006 21:35:53 +0000 Subject: [PATCH] fix intermittent lib build error when .tar.gz objects did not release the lock on the directory quick enough, causing a permission denied error when trying to rename the directory and the module build to fail git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@736 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- w32/vsnet/GetLibs.vbs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/w32/vsnet/GetLibs.vbs b/w32/vsnet/GetLibs.vbs index 13cc7ee2f9..d64bf92323 100644 --- a/w32/vsnet/GetLibs.vbs +++ b/w32/vsnet/GetLibs.vbs @@ -989,6 +989,7 @@ Sub UnTarGZ(TGZfile, DestFolder) Set objTAR = Nothing Set objGZip = Nothing + WScript.Sleep(500) End Sub @@ -998,6 +999,7 @@ Sub UnZip(Zipfile, DestFolder) wscript.echo("Extracting: " & Zipfile) objZip.UnPack Zipfile, DestFolder Set objZip = Nothing + WScript.Sleep(500) End Sub