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 e1136b3 commit 258db01Copy full SHA for 258db01
Makefile
@@ -287,7 +287,7 @@ swagger-validate: ## check if the swagger spec is valid
287
@$(SED_INPLACE) -E 's|"basePath":( *)"(.*)"|"basePath":\1"/\2"|g' './$(SWAGGER_SPEC)' # add a prefix slash to basePath
288
@# FIXME: there are some warnings
289
$(GO) run $(SWAGGER_PACKAGE) validate './$(SWAGGER_SPEC)'
290
- @$(SED_INPLACE) -E 's|"basePath":( *)"/(.*)"|"basePath":\1"\2"|g' './$(SWAGGER_SPEC)' # remove the prefix slash from basePath
+ @$(SED_INPLACE) -E -e 's|"basePath":( *)"/(.*)"|"basePath":\1"\2"|g' './$(SWAGGER_SPEC)' # remove the prefix slash from basePath
291
292
.PHONY: checks
293
checks: checks-frontend checks-backend ## run various consistency checks
0 commit comments