From 3f88ee4f4473c3bdd8ea05d7f02faa8e9f73f155 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Wed, 8 Nov 2023 22:16:39 +0530 Subject: [PATCH] Update gci cli args in Makefile (#4621) Looks like newer version of gci cli has changed the way to pass cli args. --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [ ] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index a625399db..d35e6e9ad 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,7 +18,7 @@ lint: check-lint-version fmt: gofumpt -w . goimports -w . - gci write --skip-generated -s 'standard,default,prefix(github.com/alcionai/corso)' . + gci write --skip-generated -s 'standard' -s 'default' -s 'prefix(github.com/alcionai/corso)' . check-lint-version: check-lint @if [ "$(LINT_VERSION)" != "$(WANTED_LINT_VERSION)" ]; then \