fix contour y bounds swap
This commit is contained in:
parent
1beb8d7cc0
commit
97fd508e46
4 changed files with 13 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
tag=${1:-latest}
|
||||
npm run clear-cache
|
||||
npm run clean
|
||||
./bin/build-upload win ${tag} && \
|
||||
./bin/build-upload linux ${tag} && \
|
||||
./bin/build-upload mac ${tag}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ exports.default = async function notarizing(context) {
|
|||
const { electronPlatformName, appOutDir } = context;
|
||||
|
||||
if (process.env.SKIPNOT || electronPlatformName !== 'darwin') {
|
||||
console.log('SKIP NOTARIZING');
|
||||
console.log(' ** skip notarizing:', electronPlatformName);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue