From 6750a78849dcb6f1477c5162a6d2185afcdbefd7 Mon Sep 17 00:00:00 2001 From: Jon C Date: Thu, 18 Jun 2026 14:16:08 +0200 Subject: [PATCH] Make install.sh shebang more generic (#46) #### Problem The install script doesn't work on setups which put `bash` in a different place than `/bin`. For example, nixos doesn't put its bins in there. #### Summary of changes Use the more generic shebang of `#!/usr/bin/env bash` to allow the system to find it instead. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 09863b1..4e586ce 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -euo pipefail # Claude Code Devcontainer CLI Helper