提交 aea92cf6 authored 作者: Michael Jerris's avatar Michael Jerris

fix intermittent lib build error when .tar.gz objects did not release the lock…

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
上级 c750acb8
...@@ -989,6 +989,7 @@ Sub UnTarGZ(TGZfile, DestFolder) ...@@ -989,6 +989,7 @@ Sub UnTarGZ(TGZfile, DestFolder)
Set objTAR = Nothing Set objTAR = Nothing
Set objGZip = Nothing Set objGZip = Nothing
WScript.Sleep(500)
End Sub End Sub
...@@ -998,6 +999,7 @@ Sub UnZip(Zipfile, DestFolder) ...@@ -998,6 +999,7 @@ Sub UnZip(Zipfile, DestFolder)
wscript.echo("Extracting: " & Zipfile) wscript.echo("Extracting: " & Zipfile)
objZip.UnPack Zipfile, DestFolder objZip.UnPack Zipfile, DestFolder
Set objZip = Nothing Set objZip = Nothing
WScript.Sleep(500)
End Sub End Sub
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论