Skip to content

Commit

Permalink
=sbt Fix sbt loading on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
He-Pin committed Aug 7, 2023
1 parent e7da6d3 commit a60325e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object Dependencies {
val h2specVersion = "2.6.0"
val h2specName = s"h2spec_${DependencyHelpers.osName}_amd64"
val h2specExe = "h2spec" + DependencyHelpers.exeIfWindows
val h2specArtifactExtension = if (h2specExe == "exe") "zip" else "tar.gz"
val h2specArtifactExtension = if (h2specExe.contains("exe")) "zip" else "tar.gz"
val h2specUrl =
s"https://github.com/summerwind/h2spec/releases/download/v$h2specVersion/$h2specName.$h2specArtifactExtension"

Expand Down

0 comments on commit a60325e

Please sign in to comment.