From 2054f58f6a669cfbafa53e88c2b6d59464d8e8ee Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 29 Jun 2016 15:09:33 -0700 Subject: [PATCH] tools: add a shebang line to cabal script --- cabal-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cabal-install.sh b/cabal-install.sh index e03f0433b..d00e23966 100755 --- a/cabal-install.sh +++ b/cabal-install.sh @@ -1,10 +1,11 @@ +#!/usr/bin/env bash # Run this script to install all hledger packages using cabal # (if you prefer using cabal to stack) -# use a sandbox in this directory to avoid build problems +# make a sandbox in this directory to avoid build problems cabal sandbox init -# maybe useful for some developers.. +# might be useful for some developers.. cabal sandbox add-source ./hledger-lib cabal sandbox add-source ./hledger cabal sandbox add-source ./hledger-ui