File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ FROM clojure:tools-deps
2
2
3
3
COPY check.sh /check.sh
4
4
5
- RUN clojure -Ttools install io.github.cljdoc/cljdoc-analyzer '{:git/tag "v1.0.695"}' :as cljdoc
5
+ RUN clojure -Ttools install io.github.cljdoc/cljdoc-analyzer '{:git/tag "v1.0.695"}' :as cljdoc-analyzer
6
6
7
7
ENTRYPOINT ["bash" , "/check.sh" ]
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ if [ "$action" -eq "analyze" ]; then
9
9
echo " Running 'analyze :project $mvn_project :version $mvn_version ' to check a libary installed into a Maven repo"
10
10
[ -n " $mvn_project " ] || die ' Missing argument mvn_project that is required for action=analyze'
11
11
[ -n " $mvn_version " ] || die ' Missing argument mvn_version that is required for action=analyze'
12
- clojure -Tcljdoc :download true analyze :project \" " $mvn_project " \" :version \" " $mvn_version " \"
12
+ clojure -Tcljdoc-analyzer :download true analyze :project \" " $mvn_project " \" :version \" " $mvn_version " \"
13
13
else
14
14
echo " Running 'analyze-local' to check the deps.edn based project in the current directory..."
15
- clojure -Tcljdoc analyze-local
15
+ clojure -Tcljdoc-analyzer analyze-local
16
16
fi
You can’t perform that action at this time.
0 commit comments