Skip to content

Commit 116fd5d

Browse files
dylanjhaclaude
andcommitted
fix: use bash shebang for pipefail support
Ubuntu's default /bin/sh is dash, which doesn't support pipefail. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 23676f6 commit 116fd5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/usr/bin/env bash
22
set -euo pipefail
33

44
# Detect platform

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/usr/bin/env bash
22
set -euo pipefail
33

44
# Publish @mux/cli and platform packages to npm.

0 commit comments

Comments
 (0)