mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 07:28:26 +00:00
[desktop] Fix incomplete build being generated
...because of returning false from our build hook.
This commit is contained in:
parent
07f55020df
commit
47ec5e78c0
@ -34,7 +34,10 @@ module.exports = async (context) => {
|
||||
// https://nodejs.org/api/process.html#processarch
|
||||
if (arch == process.arch) {
|
||||
// `magick.js` would've already downloaded the file, nothing to do.
|
||||
return;
|
||||
//
|
||||
// We must not return false, because
|
||||
// > Resolving to false will skip dependencies install or rebuild.
|
||||
return true;
|
||||
}
|
||||
|
||||
const download = async (downloadName, outputName) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user