Skip to content

Commit

Permalink
fix(gradle-plugin): add star projection on command line to build ios …
Browse files Browse the repository at this point in the history
…native image
  • Loading branch information
piiertho committed Oct 11, 2023
1 parent 23fa682 commit b88be07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/src/doc/user-guide/versioning.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The module uses semantic versioning for its own versions but adds a suffix for the supported godot version:

Full version: `0.7.0-4.1.2`
Full version: `0.7.1-4.1.2`

Module Version: `0.7.0`
Module Version: `0.7.1`

Supported Godot Version: `4.1.2`
2 changes: 1 addition & 1 deletion kt/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]

godotKotlinJvm = "0.7.0"
godotKotlinJvm = "0.7.1"
kotlin = "1.9.0"
godot = "4.1.2"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,7 @@ fun Project.createIOSGraalNativeImageTask(

println(arguments.joinToString(" "))

commandLine(
arguments
)
commandLine(*arguments)
}
}
}

0 comments on commit b88be07

Please sign in to comment.