From 50fba4a5d2d664d377e21633a36a84794cd3d0b5 Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Mon, 28 Aug 2017 23:21:03 -0400 Subject: Fix bug in ref resolver Pipe err message to stderr since stdout is captured from this function by the caller. --- repo-access.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo-access.sh b/repo-access.sh index ad0686b..6e5b481 100644 --- a/repo-access.sh +++ b/repo-access.sh @@ -36,7 +36,7 @@ function systr_repo_resolve_reference elif [ -f "revs/$symref/.commit.systr" ]; then echo "$symref" else - echo "$symref not a revision" + echo "$symref not a revision" >&2 exit 1 fi ) -- cgit v1.2.3