We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f3e92 commit bc63502Copy full SHA for bc63502
1 file changed
src/lib/fileSystemHelpers.js
@@ -61,7 +61,7 @@ const atomicReplace = async (targetPath, buildFn) => {
61
const atomicFS = (() => {
62
const sleep = (duration) => new Promise(resolve => setTimeout(resolve, duration))
63
64
- const retryUntilSuccess = async (fn, maxRetries = 10, delayMS = 50) => {
+ const retryUntilSuccess = async (fn, maxRetries = 10, delayMS = 1000) => {
65
if (platform() !== 'win32') {
66
return fn()
67
}
0 commit comments