mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
chore: reuse defaultArchList
(#6978)
This commit is contained in:
parent
e5bd34cb34
commit
994e4fd6d9
@ -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}})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user