Skip to content

Commit

Permalink
Merge pull request #519 from codacy/fix-base-url-argument-handling
Browse files Browse the repository at this point in the history
default codacyApiBaseUrl to empty on a first step
  • Loading branch information
heliocodacy authored Feb 5, 2025
2 parents 880c138 + afef5f7 commit 3f1e41c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ final case class APIOptions(@ValueDescription("The project token.")
@ValueDescription("The project name.")
project: Option[ProjectName] = Option.empty,
@ValueDescription("The codacy api base url.")
codacyApiBaseUrl: Option[String] = Some("https://api.codacy.com"))
codacyApiBaseUrl: Option[String] = Option.empty)

final case class Analyze(
@Recurse
Expand Down

0 comments on commit 3f1e41c

Please sign in to comment.