Skip to content

Commit

Permalink
fix shebangs
Browse files Browse the repository at this point in the history
  • Loading branch information
chadsr committed Feb 12, 2025
1 parent 9995e97 commit 66b4858
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bash/.bash_env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
# shellcheck shell=bash

if [ -f "$HOME/.zshenv" ]; then
# shellcheck disable=SC1090
Expand Down
2 changes: 2 additions & 0 deletions zsh/.aliases
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# shellcheck shell=bash

alias virtualbox='env QT_QPA_PLATFORM=xcb virtualbox'
alias emulator='env QT_QPA_PLATFORM=xcb emulator'
alias android-studio='env QT_QPA_PLATFORM=xcb android-studio'
Expand Down
1 change: 1 addition & 0 deletions zsh/.zlogin
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#!/usr/bin/env zsh
2 changes: 2 additions & 0 deletions zsh/.zprofile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env zsh

if [[ "$OSTYPE" == "darwin"* ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
2 changes: 1 addition & 1 deletion zsh/.zshenv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
# shellcheck shell=bash
# also sourced in .bash_env, so conform to bash syntax

# remove duplicate entries from $PATH
Expand Down

0 comments on commit 66b4858

Please sign in to comment.