Skip to content

Commit

Permalink
update main
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott committed Mar 11, 2024
1 parent eea09df commit 233ff91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2971,10 +2971,10 @@ async function verify(context) {
const { stdout } = await execa(bin, ["db", "verify", "--json"], {
encoding: "utf8",
detached: true,
// @ts-expect-error
stdout: ["inherit", "pipe"],
stdout: "pipe",
stderr: "inherit"
});
console.log(stdout);
const result = JSON.parse(stdout.toString());
return result;
}
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ async function verify(context: typeof github.context) {
const { stdout } = await execa(bin, ["db", "verify", "--json"], {
encoding: "utf8",
detached: true,
// @ts-expect-error
stdout: ["inherit", "pipe"],
stdout: "pipe",
stderr: "inherit",
});
console.log(stdout);
const result = JSON.parse(stdout.toString());
return result;
}
Expand Down

0 comments on commit 233ff91

Please sign in to comment.