Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable hard links in build workflows
electron-builder has some logic that uses hard links instead of copies on macOS and Linux, but only in CI by default (see node_modules/builder-util/out/fs.js -> _isUseHardLink) which then causes errors related to files already existing. Anyways, the performance of a link over a copy is unimportant to our build workflows, so we'll just force real copies so it actually works.
- Loading branch information