fix: shbangs in bash configuration files

This commit is contained in:
2025-11-18 17:11:40 +01:00
parent 8df76cc477
commit 50d75707a0
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# shellcheck shell=bash #!/bin/bash
# #
# ~/.bash_logout # ~/.bash_logout
# sourced when an interactive login shell exits, or a non-interactive login shell executes `exit` # sourced when an interactive login shell exits, or a non-interactive login shell executes `exit`

View File

@@ -1,4 +1,4 @@
# shellcheck shell=bash #!/bin/bash
# shellcheck disable=1091 # shellcheck disable=1091
# #
# ~/.bash_profile # ~/.bash_profile

View File

@@ -1,5 +1,5 @@
# shellcheck shell=bash #!/bin/bash
# shellcheck disable=SC1090,SC1091 # shellcheck disable=SC1091,SC2155
# #
# ~/.bashrc # ~/.bashrc
# sourced upon launch of an interactive shell, which isn't a login shell has been executed # sourced upon launch of an interactive shell, which isn't a login shell has been executed