summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2011-04-07 10:12:56 +0200
committeraxis <qt-info@nokia.com>2011-04-07 10:13:12 +0200
commita2134dcec4b7536eb7574d0c27246f960dbb6eb6 (patch)
tree115346bd66cc9407d51fac66d5d3f42694e79737
parent8dbbcd6bb6614a3bff32860e24f66fd5fc5dd936 (diff)
Desperate attempt to workaround meaningless error in Windows.
-rw-r--r--scripts/950_pulse_dep_tree5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/950_pulse_dep_tree b/scripts/950_pulse_dep_tree
index ac91d08..1841d7f 100644
--- a/scripts/950_pulse_dep_tree
+++ b/scripts/950_pulse_dep_tree
@@ -156,6 +156,11 @@ sub resolveAndCommitDependencies {
# In the case of webkit, use latest revision, since we cannot publish SHAs without going through
# the WebKit contribution process.
$committedSha = "LATEST_REVISION";
+
+ # Desperate attempt to workaround meaningless error in Windows.
+ # (error: unable to unlink old 'Source/sync.profile' (Permission denied))
+ sleep(5) if ($OStype == WINDOWS);
+
# Also, go back one commit, because we don't want the newly generated commit to be referenced in
# the mother repo.
run("git checkout -q master~1");