Skip to content

Commit 7f8c779

Browse files
committed
report clj errors to stderr, not file
1 parent e53e01e commit 7f8c779

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

check.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ if [ "$action" = "analyze" ]; then
99
echo "Running 'analyze :project $mvn_project :version $mvn_version' to check a libary installed into a Maven repo"
1010
[ -n "$mvn_project" ] || die 'Missing argument mvn_project that is required for action=analyze'
1111
[ -n "$mvn_version" ] || die 'Missing argument mvn_version that is required for action=analyze'
12-
clojure -Tcljdoc-analyzer analyze :download true :project \""$mvn_project"\" :version \""$mvn_version"\"
12+
clojure --report stderr -Tcljdoc-analyzer analyze :download true :project \""$mvn_project"\" :version \""$mvn_version"\"
1313
else
14-
echo "Running 'analyze-local' to check the deps.edn based project in the current directory..."
15-
clojure -Tcljdoc-analyzer analyze-local
14+
echo "Running 'analyze-local' to check the deps.edn based project in the current directory $(pwd)..."
15+
clojure --report stderr -Tcljdoc-analyzer analyze-local
1616
fi

0 commit comments

Comments
 (0)