diff options
| author | Joel Martin <github@martintribe.org> | 2015-02-10 20:57:56 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-02-10 20:57:56 -0600 |
| commit | 2ffb2af827faf4df00a93761b9e4f5948738d63f (patch) | |
| tree | b27108f7dafcbcb882ecd247c60216ba1d9bcc09 /bash/Makefile | |
| parent | 8a9d0a8a41a176cb0e3bf6cbac70b21e9d983e2a (diff) | |
| parent | c97af215258bcc71ecc0e01a0d78794018be4ecf (diff) | |
| download | mal-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/Makefile | 2 |
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 $@ |
