Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update shebang to use /usr/bin/env for portability #245

Open
wants to merge 2 commits into
base: development
Choose a base branch
from

Conversation

SZanko
Copy link

@SZanko SZanko commented Dec 9, 2024

Changed the shebang from #!/usr/bin/bash to #!/usr/bin/env bash to improve script portability across different environments where bash may not be located in /usr/bin/. This ensures compatibility on systems with alternative bash paths. e.g. nixos

Changed the shebang from `#!/usr/bin/bash` to `#!/usr/bin/env bash` to improve script portability across different environments where `bash` may not be located in `/usr/bin/`. This ensures compatibility on systems with alternative `bash` paths.

Signed-off-by: SZanko <szanko_dev@proton.me>
Copy link
Contributor

@Adda0 Adda0 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey. This is a great idea. I have been meaning to make a Nix package, and this is a nice first step.

The shebang should be #!/usr/bin/env bash, but you use #!/bin/env bash in the scripts. /bin/env is less portable for, e.g. BSD systems.

Signed-off-by: SZanko <szanko_dev@proton.me>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants