Skip to content

Commit 758f914

Browse files
committed
fix
1 parent 5f9c2ee commit 758f914

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

eval/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eval/dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eval/src/braintrust.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ async function installBt(version: string): Promise<void> {
5151

5252
let installCmd: string;
5353
if (isCanary) {
54-
installCmd = `curl -fsSL https://github.com/braintrustdata/bt/releases/download/${version}/bt-installer.sh | sh`;
54+
installCmd = `curl -fsSL https://github.com/braintrustdata/bt/releases/download/${version}/bt-installer.sh | bash`;
5555
} else if (version !== "") {
56-
installCmd = `curl -fsSL https://bt.dev/cli/install.sh | sh -s -- --version ${version}`;
56+
installCmd = `curl -fsSL https://bt.dev/cli/install.sh | bash -s -- --version ${version}`;
5757
} else {
58-
installCmd = `curl -fsSL https://bt.dev/cli/install.sh | sh`;
58+
installCmd = `curl -fsSL https://bt.dev/cli/install.sh | bash`;
5959
}
6060

6161
core.info(`Installing bt CLI: ${installCmd}`);

0 commit comments

Comments
 (0)