diff --git a/project/CommonSettings.scala b/project/CommonSettings.scala index 37223dc414..a568477377 100644 --- a/project/CommonSettings.scala +++ b/project/CommonSettings.scala @@ -56,17 +56,6 @@ object CommonSettings { Test / console / scalacOptions ++= (Compile / console / scalacOptions).value, Test / scalacOptions ++= testCompilerOpts(scalaVersion.value), licenses += ("MIT", url("http://opensource.org/licenses/MIT")), - //you need to build protoc manually to get it working on the new - //mac m1 chip. For instructions on how to do so see - //see: https://github.com/scalapb/ScalaPB/issues/1024 - PB.protocExecutable := ( - if (protocbridge.SystemDetector.detectedClassifier() == "osx-aarch_64") - file( - "/usr/local/bin/protoc" - ) // to change if needed, this is where protobuf manual compilation put it for me - else - PB.protocExecutable.value - ), assembly / test := {} )