Merge pull request #7122 from nextcloud/backport/6921/stable-3.14

[stable-3.14] Add additional options to make cross-compiling client feasible with Mac Crafter
This commit is contained in:
Claudio Cambra 2024-09-24 10:14:43 +08:00 коммит произвёл GitHub
Родитель 1a91e4fa2a 149e7d8676
Коммит d3cd7bb4ae
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -209,6 +209,10 @@ struct Build: ParsableCommand {
}
try fm.copyItem(atPath: clientAppDir, toPath: "\(productPath)/\(appName).app")
print("Placing Nextcloud Desktop Client in product directory...")
try fm.createDirectory(atPath: productPath, withIntermediateDirectories: true, attributes: nil)
try fm.copyItem(atPath: clientAppDir, toPath: productPath)
print("Done!")
}
}