Stop rebuilding `sdk-lints` all the time (#2861)

I noticed `sdk-lints` was getting recompiled just about every time I ran
`git commit` as part of the pre-commit hooks. It looks like a compiler
flag was added to the `ExecRustBuildTool` task type that isn't actually
used by any tools. Removing it should eliminate compiler flag conflicts
between the gradle targets and pre-commit.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
This commit is contained in:
John DiSanti 2023-07-20 06:15:34 -07:00 committed by GitHub
parent 5beee617f3
commit f310668417
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@ private fun runCli(
}
}
.copyTo(action)
action.environment("RUSTFLAGS", "--cfg aws_sdk_unstable")
action.execute()
}
}