mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
chore: reuse defaultArchList (#6978)
This commit is contained in:
@@ -21,7 +21,7 @@ open class RustPlugin : Plugin<Project> {
|
||||
val abiList = (findProperty("abiList") as? String)?.split(',') ?: defaultAbiList
|
||||
|
||||
val defaultArchList = listOf({{quote-and-join arch-list}});
|
||||
val archList = (findProperty("archList") as? String)?.split(',') ?: listOf({{quote-and-join arch-list}})
|
||||
val archList = (findProperty("archList") as? String)?.split(',') ?: defaultArchList
|
||||
|
||||
val targetsList = (findProperty("targetList") as? String)?.split(',') ?: listOf({{quote-and-join target-list}})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user