mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
16 lines
347 B
Rust
16 lines
347 B
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use std::process::exit;
|
|
|
|
fn main() {
|
|
if let Err(error) = tauri_build::mobile::PluginBuilder::new()
|
|
.ios_path("ios")
|
|
.run()
|
|
{
|
|
println!("{error:#}");
|
|
exit(1);
|
|
}
|
|
}
|