Skip to content

Commit

Permalink
fix: more error propogation
Browse files Browse the repository at this point in the history
mikeal committed Sep 9, 2020
1 parent 99c9cd0 commit 8bb6da4
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -37,6 +37,6 @@ git show-ref # useful for debugging
git branch --verbose

# Dependencies are installed at build time
node /src/merge-release-run.js "$@"
node /src/merge-release-run.js "$@" || exit 1

git push "${remote_repo}" --tags
2 changes: 1 addition & 1 deletion src/merge-release-run.js
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ const fs = require('fs')
const path = require('path')
const bent = require('bent')
const git = require('simple-git')()
const { execSync } = require('child_process')
const { execSync, spawnSync } = require('child_process')
const { promisify } = require('util')

const exec = str => {

0 comments on commit 8bb6da4

Please sign in to comment.