Skip to content

Commit 05af27c

Browse files
committed
Fix cadctl lint job
1 parent 82298d5 commit 05af27c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build-cadctl: ## Build the cadctl binary
3636
lint-cadctl: ## Lint cadctl subproject
3737
@echo
3838
@echo "Linting cadctl..."
39-
cd cadctl && GOLANGCI_LINT_CACHE=$$(mktemp -d) $(GOPATH)/bin/golangci-lint run -c ../.golangci.yml
39+
GOLANGCI_LINT_CACHE=$$(mktemp -d) $(GOPATH)/bin/golangci-lint run -c .golangci.yml
4040

4141
.PHONY: test-cadctl
4242
test-cadctl: ## Run automated tests for cadctl

pkg/aws/aws.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,4 +635,4 @@ func (c *SdkClient) getRouteTable(routeTableID string) (*ec2.RouteTable, error)
635635
return &ec2.RouteTable{}, fmt.Errorf("no route tables found for route table id %v", routeTableID)
636636
}
637637
return describeRouteTablesOutput.RouteTables[0], nil
638-
}
638+
}

0 commit comments

Comments
 (0)