-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Change shebang at the begining of a shell script (#24)
Changed the shebang in the script from `#!/bin/bash` to a more portable `#!/usr/bin/env bash`. This modification aims to enhance the script's portability across different operating systems. Using `#!/usr/bin/env bash` allows the script to dynamically locate the bash interpreter in the current environment, eliminating potential issues associated with variations in the location of the bash interpreter on different systems. Additionally, this adjustment facilitates collaboration with environments where program paths may differ. The purpose of this change is to improve the script's portability and minimize the need for manual updates to the bash interpreter path in case of any future changes.
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters