X Tutup
Skip to content

Commit 7908802

Browse files
jterry75thaJeztah
authored andcommitted
Fix Makefile to run protobuild on paths with spaces
Signed-off-by: Justin Terry (VM) <juterry@microsoft.com> (cherry picked from commit 7d70d2b) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 583472f commit 7908802

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@ AUTHORS: .mailmap .git/HEAD
116116

117117
generate: protos
118118
@echo "$(WHALE) $@"
119-
@PATH=${ROOTDIR}/bin:${PATH} go generate -x ${PACKAGES}
119+
@PATH="${ROOTDIR}/bin:${PATH}" go generate -x ${PACKAGES}
120120

121121
protos: bin/protoc-gen-gogoctrd ## generate protobuf
122122
@echo "$(WHALE) $@"
123-
@PATH=${ROOTDIR}/bin:${PATH} protobuild --quiet ${PACKAGES}
123+
@PATH="${ROOTDIR}/bin:${PATH}" protobuild --quiet ${PACKAGES}
124124

125125
check-protos: protos ## check if protobufs needs to be generated again
126126
@echo "$(WHALE) $@"

0 commit comments

Comments
 (0)
X Tutup