Skip to content

Commit

Permalink
fix(ci): Fix CI braket warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecmd committed Jul 12, 2024
1 parent b2b09ad commit 663c6ed
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 @@ -50,7 +50,7 @@ fmt-fix:
fmt-check:
@printf "Check formatting... \n"
@go mod download golang.org/x/tools
@if [[ $$( go run golang.org/x/tools/cmd/goimports@latest -l . ) ]]; then printf "Files not properly formatted. Run 'make fmt-fix' \n"; exit 1; else printf "Check formatting finished \n"; fi
@if [ $$( go run golang.org/x/tools/cmd/goimports@latest -l . ) ]; then printf "Files not properly formatted. Run 'make fmt-fix' \n"; exit 1; else printf "Check formatting finished \n"; fi

proto/dialout_grpc.pb.go: proto/dialout.proto proto/gnmi.proto proto/gnmi_ext.proto
protoc --go_out=proto/ --go_opt=paths=source_relative \
Expand Down

0 comments on commit 663c6ed

Please sign in to comment.