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.
This commit is contained in:
Jon C
2026-06-18 14:16:08 +02:00
committed by GitHub
parent 5203cb53ba
commit 6750a78849
+1 -1
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail
# Claude Code Devcontainer CLI Helper