mirror of
https://github.com/trailofbits/claude-code-devcontainer
synced 2026-06-21 14:11:48 +00:00
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:
+1
-1
@@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
# Claude Code Devcontainer CLI Helper
|
||||
|
||||
Reference in New Issue
Block a user