Skip to content

Commit

Permalink
fix: fs-extra copySync
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasMerz authored and erisu committed Jun 21, 2022
1 parent 3878ade commit facb0e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ function cleanupAndSetProjectSplashScreenImage (srcFile, destFilePath, possibleP
}

if (!cleanupOnly && srcFile && fs.existsSync(srcFile)) {
fs.cpSync(srcFile, destFilePath);
fs.copySync(srcFile, destFilePath);
}
}

Expand Down

0 comments on commit facb0e7

Please sign in to comment.