Skip to content

Commit

Permalink
fix script path to support multi-module project
Browse files Browse the repository at this point in the history
  • Loading branch information
reminia committed Dec 12, 2023
1 parent ee9b5f6 commit da53923
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := "0.1.0"
version := "0.1.1-SNAPSHOT"
organization := "me.yceel"

val publishSettings = Seq(
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/sbtcurl/CurlPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object CurlPlugin extends AutoPlugin {

lazy val curlTestSettings: Seq[Def.Setting[_]] = Seq(
curlTestScript := {
val base = (LocalRootProject / baseDirectory).value
val base = baseDirectory.value
val projectDir = base / "project"
val files = List(
base / "curl-script",
Expand Down

0 comments on commit da53923

Please sign in to comment.