Skip to content

Commit

Permalink
Fixed init script to publish to github pages.
Browse files Browse the repository at this point in the history
  • Loading branch information
handstandsam committed Nov 28, 2024
1 parent b37e824 commit 8200df2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion invert-report/src/jsMain/kotlin/ui/BootstrapComposables.kt
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ fun BootstrapTable(
var sortIdx by remember { mutableStateOf(sortByColumn) }
var ascending by remember { mutableStateOf(sortAscending) }

val sortedRows = if (enableSorting && types != null) {
val sortedRows = if (enableSorting) {
val typeToSortBy = types[sortIdx]
val sorted1 = when (typeToSortBy) {
Int::class -> {
Expand Down
3 changes: 2 additions & 1 deletion invert.init.script.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import com.squareup.invert.InvertGradlePlugin

initscript {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
// SNAPSHOT Versions
Expand All @@ -27,9 +28,9 @@ class InvertInitScriptPlugin : Plugin<Gradle> {
gradle.rootProject {
buildscript {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
mavenLocal()
// SNAPSHOT Versions
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
Expand Down
9 changes: 4 additions & 5 deletions scripts/github-pages.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,6 @@ val OTHER_REPOS_TO_CONSIDER = listOf(
org = "android",
project = "nowinandroid",
),
TargetRepo(
org = "handstandsam",
project = "ShoppingApp",
),
TargetRepo(
org = "rickbusarow",
project = "ModuleCheck",
Expand All @@ -223,6 +219,10 @@ val OTHER_REPOS_TO_CONSIDER = listOf(
)

val ALL_REPOS = listOf(
TargetRepo(
org = "handstandsam",
project = "ShoppingApp",
),
TargetRepo(
runOnGitHubAction = false,
org = "JetBrains",
Expand Down Expand Up @@ -325,7 +325,6 @@ val ALL_REPOS = listOf(
true
}
}
.filter { it.org == "flipperdevices" }

val CLONES_DIR = File("build/clones").apply {
if (!exists()) {
Expand Down

0 comments on commit 8200df2

Please sign in to comment.