Skip to content

Commit

Permalink
fix: set hashbang to '/usr/bin/env zsh', not '/bin/env zsh', so it wo…
Browse files Browse the repository at this point in the history
…rks on MacOS aswell as Linux (#94)
  • Loading branch information
wintermi authored Jan 2, 2023
1 parent 3a925f7 commit 8d3ca00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env zsh
#!/usr/bin/env zsh

main() {
branch="master"
Expand Down
2 changes: 1 addition & 1 deletion zap.zsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env zsh
#!/usr/bin/env zsh
# shellcheck disable=SC1090

export ZAP_DIR="$HOME/.local/share/zap"
Expand Down

0 comments on commit 8d3ca00

Please sign in to comment.