Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Nov 4, 2024
1 parent 42fbb33 commit b65d7a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ internal fun Path.createGitHubRepository(repository: GitHubRepository, defaultDe
}

runCommand("gh", "repo", "create", "--public", "-s", ".")
runCommand("git", "push", "origin", ".")

val gitHubDescription = KInquirer.promptInput("GitHub description", defaultDescription)
val gitHubTopics = KInquirer.promptInput("GitHub topics (use comma separated list)", "kotlin").split(",").map { it.trim() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal val librarianPublishToGcs = "librarianPublishToGcs"

internal val skipProjectIsolationIncompatibleParts = false

@Deprecated("use Librarian.root() instead", ReplaceWith("Librarian.module(project)", "import com.gradleup.librarian.gradle.Librarian"))
@Deprecated("use Librarian.root() instead", ReplaceWith("Librarian.root(project)", "import com.gradleup.librarian.gradle.Librarian"))
fun Project.librarianRoot() {
if (!skipProjectIsolationIncompatibleParts) {
configureBcv()
Expand Down

0 comments on commit b65d7a2

Please sign in to comment.