Skip to content

Commit 3d387f0

Browse files
committed
Fix build bugs
1 parent 6ed5688 commit 3d387f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build-tools/build-plugin/src/build/RootSettingsExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RootSettingsExtension(
2727
var prGithubUser by project.prop<String>("jupyter.github.user")
2828
var prGithubToken by project.prop<String>("jupyter.github.token")
2929

30-
var isLocalBuild by project.prop<Boolean>("build.isLocal")
30+
var isLocalBuild by project.prop("build.isLocal", false)
3131

3232
var jvmTargetForSnippets by project.prop<String?>()
3333

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ kotlinPublications {
165165
}
166166

167167
localRepositories {
168-
defaultLocalMavenRepository()
168+
localMavenRepository(rootSettings.artifactsDir.resolve("maven"))
169169
}
170170

171171
publication {

0 commit comments

Comments
 (0)