diff options
author | rodarima <rodarima@gmail.com> | 2024-05-08 20:46:36 +0200 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-05-08 21:18:45 +0200 |
commit | 6c65fb3ecc7a21799009161d64992f0ea94c1ca8 (patch) | |
tree | dee7d6c30c8b9105353f0b55efc32df966fe4a20 /man.filter.dpi | |
parent | 760012702cf091de29d208fc337c2b9c3fddb4b6 (diff) |
Remove stray dollar sign
Fixes https://github.com/dillo-browser/dillo-plugin-man/issues/2
Diffstat (limited to 'man.filter.dpi')
-rwxr-xr-x | man.filter.dpi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man.filter.dpi b/man.filter.dpi index 798f293..e315a71 100755 --- a/man.filter.dpi +++ b/man.filter.dpi @@ -16,8 +16,8 @@ url=${url%"' '"} serve_404() { printf "<cmd='start_send_page' url='' '>\n" printf "Content-type: text/plain\r\n\r\n" - $manpage="$1" - $apropos="$2" + manpage="$1" + apropos="$2" if [ -z "$1" ]; then echo "Not found" exit 0 |