In Fish MD5 on BSD now use given String and not -s

Signed-off-by: Ron Gebauer <ron.gebauer@raytion.com>
This commit is contained in:
Ron Gebauer 2020-04-05 23:27:59 +02:00 committed by ridiculousfish
parent 866d506d11
commit 77fb54fa99
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- `fish --no-execute` will no longer complain about unknown commands or non-matching wildcards, as these could be defined differently at runtime (especially for functions). #977
- `jobs --quiet PID` will no longer print 'no suitable job' if the job for PID does not exist (e.g. because it has finished). #6809
- A variable `fish_kill_signal` will be set to the signal that terminated the last foreground job, or `0` if the job exited normally.
- On BSD systems, with the `-s` option, `fish_md5` does not use the given string, but `-s`. From now on the string is used.
### Syntax changes and new commands

View File

@ -15,7 +15,7 @@ function __fish_md5
# BSD systems
if set -q argv[2]
if test $argv[1] = -s
md5 -s $argv[1]
md5 -s $argv[2]
else
printf (_ "%s: Too many arguments %s\n") fish_md5 $argv
end