From fd2055fadc0f23dd9388c4bb7c74f49c37bad951 Mon Sep 17 00:00:00 2001 From: Matthew Winter <33818+wintermi@users.noreply.github.com> Date: Mon, 2 Jan 2023 19:42:50 +1100 Subject: [PATCH] fix: set hashbang to '/usr/bin/env zsh', not '/bin/env zsh', so it works on MacOS aswell as Linux --- install.sh | 2 +- zap.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 58b8a69..00cda6f 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,4 @@ -#!/bin/env zsh +#!/usr/bin/env zsh main() { branch="master" diff --git a/zap.zsh b/zap.zsh index 264f9f7..1e54ff4 100644 --- a/zap.zsh +++ b/zap.zsh @@ -1,4 +1,4 @@ -#!/bin/env zsh +#!/usr/bin/env zsh # shellcheck disable=SC1090 export ZAP_DIR="$HOME/.local/share/zap"