Skip to content
Snippets Groups Projects
Unverified Commit 63a9aef5 authored by Jose Manuel Duarte's avatar Jose Manuel Duarte Committed by GitHub
Browse files

Fixing exit code for volume packer (#714)


* Fixing exit code for pack.ts

* Changelog

---------

Co-authored-by: default avatarDavid Sehnal <dsehnal@users.noreply.github.com>
parent e36fe8c7
No related branches found
No related tags found
No related merge requests found
...@@ -6,10 +6,12 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -6,10 +6,12 @@ Note that since we don't clearly distinguish between a public and private interf
## [Unreleased] ## [Unreleased]
- Fix exit code of volume pack executable (pack.ts). Now exits with non-0 status when an error happens
- Remove pca transform from components ui focus (too distracting) - Remove pca transform from components ui focus (too distracting)
- Fix artefacts with opaque outlines behind transparent objects - Fix artefacts with opaque outlines behind transparent objects
- Fix polymer trace visual not updating - Fix polymer trace visual not updating
## [v3.31.1] - 2023-02-05 ## [v3.31.1] - 2023-02-05
- Improve Component camera focus based on the PCA of the structure and the following rules: - Improve Component camera focus based on the PCA of the structure and the following rules:
......
...@@ -18,6 +18,7 @@ export async function pack(input: { name: string, filename: string }[], blockSiz ...@@ -18,6 +18,7 @@ export async function pack(input: { name: string, filename: string }[], blockSiz
await create(outputFilename, input, blockSizeInMB, isPeriodic, format); await create(outputFilename, input, blockSizeInMB, isPeriodic, format);
} catch (e) { } catch (e) {
console.error('[Error] ' + e); console.error('[Error] ' + e);
process.exit(1);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment