Skip to content

Commit

Permalink
fix: update version command to use echo for output consistency
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémy Audiger <[email protected]>
  • Loading branch information
jaudiger committed Jan 29, 2025
1 parent d5888a2 commit 72f42b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/amber/project.bri
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function amber(): std.Recipe<std.Directory> {

export async function test() {
const script = std.runBash`
amber --version | tr -d '\n' | tee "$BRIOCHE_OUTPUT"
echo -n $(amber --version) | tee "$BRIOCHE_OUTPUT"
`.dependencies(amber());

const result = await script.toFile().read();
Expand Down

0 comments on commit 72f42b8

Please sign in to comment.