Skip to content

Commit d9fd58e

Browse files
committed
docs(devcontainer): obvious error messages
1 parent f589362 commit d9fd58e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.devcontainer/install-hyperfine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ case "$arch" in
77
x86_64) hyperfine_target="x86_64-unknown-linux-musl" ;;
88
aarch64) hyperfine_target="aarch64-unknown-linux-musl" ;;
99
*)
10-
echo "Unsupported architecture for hyperfine prebuilt binary: $arch" >&2
10+
echo "ERROR: Unsupported architecture for hyperfine prebuilt binary: $arch" >&2
1111
exit 1
1212
;;
1313
esac

.devcontainer/post-create.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ case "$arch" in
1313
x86_64) shellcheck_arch="linux.x86_64" ;;
1414
aarch64) shellcheck_arch="linux.aarch64" ;;
1515
*)
16-
echo "Unsupported architecture for shellcheck prebuilt binary: $arch" >&2
16+
echo "ERROR: Unsupported architecture for shellcheck prebuilt binary: $arch" >&2
1717
exit 1
1818
;;
1919
esac
@@ -27,7 +27,7 @@ case "$arch" in
2727
x86_64) shfmt_arch="linux_amd64" ;;
2828
aarch64) shfmt_arch="linux_arm64" ;;
2929
*)
30-
echo "Unsupported architecture for shfmt prebuilt binary: $arch" >&2
30+
echo "ERROR: Unsupported architecture for shfmt prebuilt binary: $arch" >&2
3131
exit 1
3232
;;
3333
esac

0 commit comments

Comments
 (0)