Skip to content

Fix missing shebang in some files #308

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

### master
- bug: add missing shebang in some files.

### v3.1.0, 2023-01-03
- upgrade to new version of `tmux-test`
Expand Down
2 changes: 2 additions & 0 deletions scripts/helpers/plugin_functions.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

# using @tpm_plugins is now deprecated in favor of using @plugin syntax
tpm_plugins_variable_name="@tpm_plugins"

Expand Down
2 changes: 2 additions & 0 deletions scripts/helpers/shell_echo_functions.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

echo_ok() {
echo "$*"
}
Expand Down
2 changes: 2 additions & 0 deletions scripts/helpers/tmux_echo_functions.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

_has_emacs_mode_keys() {
$(tmux show -gw mode-keys | grep -q emacs)
}
Expand Down
2 changes: 2 additions & 0 deletions scripts/helpers/tmux_utils.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

HELPERS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$HELPERS_DIR/plugin_functions.sh"

Expand Down
2 changes: 2 additions & 0 deletions scripts/helpers/utility.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

ensure_tpm_path_exists() {
mkdir -p "$(tpm_path)"
}
Expand Down
2 changes: 2 additions & 0 deletions scripts/variables.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

install_key_option="@tpm-install"
default_install_key="I"

Expand Down