mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
310acaf1a0
The wrapper was expanding all the words of all its arguments. Instead, we want to expand each argument as a word; there is a subtle difference!
7 lines
135 B
Bash
7 lines
135 B
Bash
#! @shell@
|
|
|
|
COMMAND=$1
|
|
shift
|
|
HOOGLE_DOC_PATH=@out@/share/hoogle/doc exec @hoogle@/bin/hoogle \
|
|
$COMMAND -d @out@/share/hoogle "$@"
|