mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 18:40:42 +08:00
7619e62b70
Also modify `logmsg` to output additional separator lines to make the demarcation between tests even clearer.
10 lines
153 B
Fish
10 lines
153 B
Fish
function logmsg
|
|
echo
|
|
echo "####################"
|
|
echo "# $argv"
|
|
|
|
echo >&2
|
|
echo "####################" >&2
|
|
echo "# $argv" >&2
|
|
end
|