mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-30 19:41:15 -03:00
Reindent functions to remove useless quotes
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
#RUN: %fish %s
|
||||
exec cat < nosuchfile
|
||||
exec cat <nosuchfile
|
||||
#CHECKERR: warning: An error occurred while redirecting file 'nosuchfile'
|
||||
#CHECKERR: open: No such file or directory
|
||||
echo "failed: $status"
|
||||
#CHECK: failed: 1
|
||||
not exec cat < nosuchfile
|
||||
not exec cat <nosuchfile
|
||||
#CHECKERR: warning: An error occurred while redirecting file 'nosuchfile'
|
||||
#CHECKERR: open: No such file or directory
|
||||
echo "neg failed: $status"
|
||||
#CHECK: neg failed: 0
|
||||
exec cat < /dev/null
|
||||
exec cat </dev/null
|
||||
echo "not reached"
|
||||
|
||||
Reference in New Issue
Block a user