Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### 1. Summary I add `#!/bin/bash` in beginning of Shell template. ### 2. Argumentation Shebang must be in shell scripts. Please, read [**ShellCheck SC2148**](https://github.com/koalaman/shellcheck/wiki/SC2148). ### 3. Behavior before pull request ```bash # @author: SashaChernykh # @Date: 2018-04-28 08:58:09 # @last Modified by: SashaChernykh # @last Modified time: 2018-04-28 08:58:09 ``` ### 4. Behavior after pull request ```bash #!/bin/bash # @author: SashaChernykh # @Date: 2018-04-28 08:58:09 # @last Modified by: SashaChernykh # @last Modified time: 2018-04-28 08:58:09 ``` ### 5. Testing environment + Sublime Text Build 3143 + FileHeader 2.0.5 Thanks.
- Loading branch information