From 6934dbfb0f369f2d062c2da14c58c4df0d563f7d Mon Sep 17 00:00:00 2001 From: Raphael Reitzig <4246780+reitzig@users.noreply.github.com> Date: Wed, 31 Jul 2019 02:23:12 +0200 Subject: [PATCH] issue #27 Fish 3 compatibility: adapt to new PATH handling cf. https://github.com/fish-shell/fish-shell/issues/436 --- test/wrapper.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/wrapper.fish b/test/wrapper.fish index 67568c2..524c845 100644 --- a/test/wrapper.fish +++ b/test/wrapper.fish @@ -34,7 +34,7 @@ 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) | sort > path_fish for out in sout status path anthome if [ (checksum "$out"_bash) != (checksum "$out"_fish) ]