From e5c2839897cf7b71dd9f6f70478779474a704687 Mon Sep 17 00:00:00 2001 From: Matt McCutchen Date: Mon, 23 Jun 2008 18:03:07 -0400 Subject: [PATCH] - ./debug and ./run now pass along arguments. - Add ./make-package . --- debug | 2 +- make-package | 1 + run | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100755 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 "$@" -- 2.34.1