mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
Add flag to build pkg in mac-crafter
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
1c8b2ac4b5
commit
4438836ade
1 changed files with 8 additions and 3 deletions
|
@ -86,6 +86,9 @@ struct Build: ParsableCommand {
|
|||
@Flag(help: "Run a full rebuild.")
|
||||
var fullRebuild = false
|
||||
|
||||
@Flag(help: "Create an installer package.")
|
||||
var package = false
|
||||
|
||||
mutating func run() throws {
|
||||
print("Configuring build tooling.")
|
||||
|
||||
|
@ -175,6 +178,7 @@ struct Build: ParsableCommand {
|
|||
|
||||
let allOptionsString = craftOptions.map({ "--options \"\($0)\"" }).joined(separator: " ")
|
||||
|
||||
let buildWorkPath = "\(buildPath)/\(craftTarget)/build"
|
||||
let clientBuildDir = "\(buildPath)/\(craftTarget)/build/\(craftBlueprintName)"
|
||||
if fullRebuild {
|
||||
do {
|
||||
|
@ -209,9 +213,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)
|
||||
if package {
|
||||
let packagePath =
|
||||
try buildPackage(buildWorkPath: buildWorkPath, productPath: productPath)
|
||||
}
|
||||
|
||||
print("Done!")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue