We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cf8e82 commit 39d094dCopy full SHA for 39d094d
Makefile
@@ -335,9 +335,9 @@ openapi-specs: ## bundles and validates openapi specifications and schemas of AL
335
.PHONY: code-analysis
336
code-analysis: .codeclimate.yml ## runs code-climate analysis
337
# Validates $<
338
- ./scripts/code-climate.sh validate-config
+ ./scripts/code-climate.bash validate-config
339
# Running analysis
340
- ./scripts/code-climate.sh analyze
+ ./scripts/code-climate.bash analyze
341
342
343
.PHONY: info info-images info-swarm info-tools
scripts/code-climate.sh renamed to scripts/code-climate.bash
@@ -19,7 +19,8 @@ docker run \
19
codeclimate/codeclimate "$@"
20
21
22
-if [ -z "$@" ];then
+if test -z "$@"
23
+then
24
echo "----"
25
echo "Listing other engines (in dockers)"
26
docker images codeclimate/*
0 commit comments