We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The create package always reports an error when installing npm dependencies because I forgot to include a proper check for the exit code:
create
installExec.on('exit', code => reject(`Install failed (code=${code})`))
Just need to change that to only reject if the exit code is non-zero.
The text was updated successfully, but these errors were encountered:
fix: only report error for install deps step if exit code is non-zero (…
dc14b1c
…#249) Fixes #239
chrispcampbell
Successfully merging a pull request may close this issue.
The
create
package always reports an error when installing npm dependencies because I forgot to include a proper check for the exit code:Just need to change that to only reject if the exit code is non-zero.
The text was updated successfully, but these errors were encountered: