dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 614172f5c21a7a8025c182cd97b08d8783bc1ff1
parent 85525e04cc080c37ffd63d19fb9f54c8c56cfcec
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu, 12 Dec 2019 13:55:16 +0100

Fix standard error output from o()

Diffstat:
M.profile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.profile b/.profile @@ -53,7 +53,7 @@ o() { elif [ -d "$target" ]; then cd "$target" else - (>&2 echo "unknown target type") + echo "unknown target type" >&2 fi fi }