From 5616e9a75155166d31dc5778d42da6125d842bee Mon Sep 17 00:00:00 2001 From: Keith Stellyes Date: Thu, 10 Oct 2019 12:16:47 -0700 Subject: [PATCH] Wrap zasm.sh shebang in /usr/bin/env ; remove comment about BSDs --- tools/zasm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/zasm.sh b/tools/zasm.sh index 449bcfc..ca93458 100755 --- a/tools/zasm.sh +++ b/tools/zasm.sh @@ -1,6 +1,6 @@ -#!/bin/bash +#!/usr/bin/env bash -# readlink -f doesn't work with macOS's implementation (BSD in general?) +# readlink -f doesn't work with macOS's implementation # so, if we can't get readlink -f to work, try python with a realpath implementation ABS_PATH=$(readlink -f "$0" || python -c "import sys, os; print(os.path.realpath('$0'))")