Skip to content

Commit

Permalink
fix go install command
Browse files Browse the repository at this point in the history
The go command itself doesn't take a -C argument, but the go install
command does.  Fix that, so `make install` works.
  • Loading branch information
tgummerer committed Oct 16, 2023
1 parent bc253f7 commit f3ed2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build: bin
go build -C cmd/pulumictl -o ${ROOT_DIR}/bin

install:
go -C cmd/pulumictl install
go install -C cmd/pulumictl

clean:
rm -rf bin
Expand Down

0 comments on commit f3ed2d0

Please sign in to comment.