diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2021-01-01 10:11:34 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2021-01-01 10:11:34 +0000 |
commit | 26b4c8f71f91d22e081b27814782686edde0c90a (patch) | |
tree | 1c321c39372c25d8634e75b5c8e08edc676b296d /editors/atom/files/patch-script_build | |
parent | New port: math/py-optuna: A hyperparameter optimization framework (diff) |
Revert r559792 to unbreak INDEX and bulk -a
It seems a lot of reverse dependencies were missed
With hat: portmgr
Diffstat (limited to 'editors/atom/files/patch-script_build')
-rw-r--r-- | editors/atom/files/patch-script_build | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/editors/atom/files/patch-script_build b/editors/atom/files/patch-script_build new file mode 100644 index 000000000000..e79a30d6250b --- /dev/null +++ b/editors/atom/files/patch-script_build @@ -0,0 +1,20 @@ +--- script/build.orig 2020-04-22 18:42:32 UTC ++++ script/build +@@ -69,7 +69,7 @@ process.env.ELECTRON_VERSION = CONFIG.appMetadata.elec + let binariesPromise = Promise.resolve() + + if (!argv.existingBinaries) { +- checkChromedriverVersion() ++ // checkChromedriverVersion() + cleanOutputDirectory() + copyAssets() + transpilePackagesWithCustomTranspilerPaths() +@@ -89,7 +89,7 @@ if (!argv.existingBinaries) { + if (!argv.generateApiDocs) { + binariesPromise + .then(packageApplication) +- .then(packagedAppPath => generateStartupSnapshot(packagedAppPath).then(() => packagedAppPath)) ++ // .then(packagedAppPath => generateStartupSnapshot(packagedAppPath).then(() => packagedAppPath)) + .then(async packagedAppPath => { + switch (process.platform) { + case 'darwin': { |