File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 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
22
33COPY check.sh /check.sh
44
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
66
77ENTRYPOINT ["bash" , "/check.sh" ]
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ if [ "$action" -eq "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 :download true analyze :project \" " $mvn_project " \" :version \" " $mvn_version " \"
12+ clojure -Tcljdoc-analyzer :download true analyze :project \" " $mvn_project " \" :version \" " $mvn_version " \"
1313else
1414 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
1616fi
You can’t perform that action at this time.
0 commit comments