From ddb32dcb7ebd1cb6a84a0d6083c3e421b21e3d07 Mon Sep 17 00:00:00 2001 From: Dario Bertini Date: Mon, 19 Jan 2015 13:19:10 +0000 Subject: [PATCH] hoogle-local-wrapper should quote the command argument --- .../libraries/haskell/hoogle/hoogle-local-wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh b/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh index 970c0e6845e..13ea889119c 100644 --- a/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh +++ b/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh @@ -3,4 +3,4 @@ COMMAND=$1 shift HOOGLE_DOC_PATH=@out@/share/hoogle/doc exec @hoogle@/bin/hoogle \ - $COMMAND -d @out@/share/hoogle "$@" + "$COMMAND" -d @out@/share/hoogle "$@"