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 b39dbbc commit 59cd4e0Copy full SHA for 59cd4e0
Makefile
@@ -1,4 +1,4 @@
1
-DATAPLANEAPI_PATH?=${PWD}
+DATAPLANEAPI_PATH?=$(shell pwd)
2
GIT_REPO?=$(shell git config --get remote.origin.url)
3
GIT_HEAD_COMMIT=$(shell git rev-parse --short HEAD)
4
GIT_LAST_TAG=$(shell git describe --abbrev=0 --tags)
@@ -34,7 +34,7 @@ generate:
34
--build-arg UID=$(shell id -u) \
35
--build-arg GID=$(shell id -g) \
36
-t dataplaneapi-swagger-gen .
37
- docker run --rm -v "$(PWD)":/data dataplaneapi-swagger-gen
+ docker run --rm -v "$(shell pwd)":/data dataplaneapi-swagger-gen
38
generate/post_swagger.sh
39
40
.PHONY: generate-native
0 commit comments