From 9236999df161214d72cc46acce9d1389dfc369d3 Mon Sep 17 00:00:00 2001 From: chrunchyjesus Date: Sat, 8 Jun 2019 07:13:19 +0200 Subject: [PATCH] fix shebang --- bin/doom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doom b/bin/doom index f2aab55c8..571a84a3e 100755 --- a/bin/doom +++ b/bin/doom @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh ":"; ( echo "$EMACS" | grep -q "term" ) && EMACS=emacs || EMACS=${EMACS:-emacs} # -*-emacs-lisp-*- ":"; command -v $EMACS >/dev/null || { >&2 echo "Emacs isn't installed"; exit 1; } ":"; VERSION=$($EMACS --version | head -n1)