SwiftFormat blankLinesAtStartOfScope

This commit is contained in:
Nindi Gill 2023-11-19 19:27:13 +11:00
parent f4e7be977e
commit 6ac54e9a3d
No known key found for this signature in database
GPG key ID: FF9A7FD590D4F4B1
67 changed files with 0 additions and 157 deletions

View file

@ -9,7 +9,6 @@ import Foundation
/// Helper struct to create macOS Installer Packages.
struct PackageCreator {
/// Create a macOS Installer Package based off the passed in `Installer` struct.
///
/// - Parameters:
@ -20,7 +19,6 @@ struct PackageCreator {
///
/// - Throws: An `Error` if the command failed to execute.
static func create(_ url: URL, from installer: Installer, identifier: String, identity: String? = nil) async throws {
var arguments: [String] = [
"pkgbuild",
"--identifier", identifier,
@ -45,7 +43,6 @@ struct PackageCreator {
///
/// - Throws: An `MistError` if the command failed to execute.
private static func create(_ url: URL, with arguments: [String]) async throws {
try await DirectoryRemover.remove(url)
let response: HelperToolCommandResponse = try ShellExecutor.shared.execute(arguments)