mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 13:01:21 -03:00
Remove caret redirection
This removes the caret as a shorthand for redirecting stderr. Note that stderr may be redirected to a file via 2>/some/path... and may be redirected with a pipe via 2>|. Fixes #4394
This commit is contained in:
@@ -35,7 +35,7 @@ function test_file
|
||||
|
||||
echo -n "Testing file $file ... "
|
||||
|
||||
../test/root/bin/fish <$file >$base.tmp.out ^$base.tmp.err
|
||||
../test/root/bin/fish <$file >$base.tmp.out 2>$base.tmp.err
|
||||
set -l exit_status $status
|
||||
set -l res ok
|
||||
|
||||
|
||||
Reference in New Issue
Block a user