From: Matt McCutchen Date: Mon, 23 Jun 2008 22:03:07 +0000 (-0400) Subject: - ./debug and ./run now pass along arguments. X-Git-Url: https://mattmccutchen.net/match/match.git/commitdiff_plain/e5c2839897cf7b71dd9f6f70478779474a704687 - ./debug and ./run now pass along arguments. - Add ./make-package . --- diff --git a/debug b/debug index 6ede1be..7742e85 100755 --- a/debug +++ b/debug @@ -2,4 +2,4 @@ # Let ghci see only the source so it loads the modules debuggably. mkdir -p debugdir (cd debugdir && ln -fs ../*.hs .) -exec ghci -i -idebugdir Test +exec ghci -i -idebugdir Test "$@" diff --git a/make-package b/make-package new file mode 100755 index 0000000..59765dc --- /dev/null +++ b/make-package @@ -0,0 +1 @@ +git archive --format=tar --prefix=match/ HEAD^{tree} | bzip2 >match.tar.bz2 diff --git a/run b/run index 04362f3..7fd903d 100755 --- a/run +++ b/run @@ -1,2 +1,2 @@ #!/bin/bash -make && exec ghci Test +make && exec ghci Test "$@"