mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
9 lines
248 B
Swift
9 lines
248 B
Swift
/*
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
func archToCraftTarget(_ arch: String) -> String {
|
|
return arch == "arm64" ? "macos-clang-arm64" : "macos-64-clang"
|
|
}
|