Skip to content

Commit bc63502

Browse files
committed
#19 | Dramatically increase delayMS
1 parent 99f3e92 commit bc63502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/fileSystemHelpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const atomicReplace = async (targetPath, buildFn) => {
6161
const atomicFS = (() => {
6262
const sleep = (duration) => new Promise(resolve => setTimeout(resolve, duration))
6363

64-
const retryUntilSuccess = async (fn, maxRetries = 10, delayMS = 50) => {
64+
const retryUntilSuccess = async (fn, maxRetries = 10, delayMS = 1000) => {
6565
if (platform() !== 'win32') {
6666
return fn()
6767
}

0 commit comments

Comments
 (0)