From 735760bb252d324c96a21d2cc018a5329b800fcc Mon Sep 17 00:00:00 2001 From: Raphael Reitzig <4246780+reitzig@users.noreply.github.com> Date: Wed, 31 Jul 2019 02:47:36 +0200 Subject: [PATCH] issue #27 Fish 2 compatibility: support old PATH handling, as well --- test/wrapper.fish | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/wrapper.fish b/test/wrapper.fish index fd648f5..d5a496b 100644 --- a/test/wrapper.fish +++ b/test/wrapper.fish @@ -34,7 +34,10 @@ for sdk_cmd in $test_commands # For nicer diffs: one entry per line, sorted string split ":" (cat path_bash) | sort > path_bash - string split ":" (cat path_fish) | sort > path_fish + string split ":" (cat path_fish) \ + | string split " " \ + | sort > path_fish + # split by spaces for fish 2.* for out in sout status path anthome if [ (checksum "$out"_bash) != (checksum "$out"_fish) ]