aboutsummaryrefslogtreecommitdiff
path: root/bash/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-10 20:57:56 -0600
committerJoel Martin <github@martintribe.org>2015-02-10 20:57:56 -0600
commit2ffb2af827faf4df00a93761b9e4f5948738d63f (patch)
treeb27108f7dafcbcb882ecd247c60216ba1d9bcc09 /bash/Makefile
parent8a9d0a8a41a176cb0e3bf6cbac70b21e9d983e2a (diff)
parentc97af215258bcc71ecc0e01a0d78794018be4ecf (diff)
downloadmal-2ffb2af827faf4df00a93761b9e4f5948738d63f.tar.gz
mal-2ffb2af827faf4df00a93761b9e4f5948738d63f.zip
Merge pull request #5 from alandipert/master
bash: use env in shebang
Diffstat (limited to 'bash/Makefile')
-rw-r--r--bash/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/Makefile b/bash/Makefile
index df663b5..5028788 100644
--- a/bash/Makefile
+++ b/bash/Makefile
@@ -6,7 +6,7 @@ all: mal.sh
mal.sh: $(SOURCES)
cat $+ > $@
- echo "#!/bin/bash" > $@
+ echo "#!/usr/bin/env bash" > $@
cat $+ | grep -v "^source " >> $@
chmod +x $@