From 3b635c263b8e295625ec9c2fee8a05fc6769edee Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Thu, 19 Sep 2024 21:10:55 +0800 Subject: [PATCH] Remove unused sparkleFile var Signed-off-by: Claudio Cambra --- admin/osx/mac-crafter/Sources/Utils/Packaging.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/admin/osx/mac-crafter/Sources/Utils/Packaging.swift b/admin/osx/mac-crafter/Sources/Utils/Packaging.swift index 73232e1672..135b097b8b 100644 --- a/admin/osx/mac-crafter/Sources/Utils/Packaging.swift +++ b/admin/osx/mac-crafter/Sources/Utils/Packaging.swift @@ -25,7 +25,6 @@ enum PackagingError: Error { func buildPackage(appName: String, buildWorkPath: String, productPath: String) throws -> String { let packageFile = "\(appName).pkg" - let sparkleFile = "\(packageFile).tbz" let pkgprojPath = "\(buildWorkPath)/admin/osx/macosx.pkgproj" guard shell("packagesutil --file \(pkgprojPath) set project name \(appName)") == 0 else {