Skip to content

Commit

Permalink
improve push logging
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott committed Mar 11, 2024
1 parent 1a44518 commit 7fff6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async function push() {
throw new Error(`Unable to locate the "astro" package. Did you remember to run install?`)
}
const bin = path.join(path.dirname(root), 'astro.js')
await execa(bin, ['db', 'push'], { encoding: 'utf8', detached: true, reject: false })
await execa(bin, ['db', 'push'], { encoding: 'utf8', detached: true, stdio: 'inherit'})
}

async function verify(context: typeof github.context) {
Expand Down

0 comments on commit 7fff6f7

Please sign in to comment.