fix contour y bounds swap

This commit is contained in:
Stewart Allen 2025-11-15 12:08:05 -05:00
commit 97fd508e46
4 changed files with 13 additions and 5 deletions

View file

@ -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}

View file

@ -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;
}