From 2d262dc0fc7c50c621e233da6d431c476bfbaa8b Mon Sep 17 00:00:00 2001 From: J Logan Date: Wed, 11 Jun 2025 13:21:53 -0700 Subject: [PATCH] Removes build variable that is not needed after launch. (#151) --- Package.resolved | 2 +- Package.swift | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Package.resolved b/Package.resolved index 2aa7bdfb..5fb976ba 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "ea3144c0718528cd6faef7841a8c1fb6ae9339473ba78f9d5d87b16415d46d58", + "originHash" : "cb5cf6c245fe60f647e4e106917dc2e6559eda5170af37e63e52e549b2eed566", "pins" : [ { "identity" : "async-http-client", diff --git a/Package.swift b/Package.swift index b06883dd..4a278f61 100644 --- a/Package.swift +++ b/Package.swift @@ -27,11 +27,7 @@ if let path = ProcessInfo.processInfo.environment["CONTAINERIZATION_PATH"] { scVersion = "latest" } else { scVersion = "0.1.0" - if let containerizationRepo = ProcessInfo.processInfo.environment["CONTAINERIZATION_REPO"], containerizationRepo != "" { - scDependency = .package(url: containerizationRepo, exact: Version(stringLiteral: scVersion)) - } else { - scDependency = .package(url: "https://github.com/apple/containerization.git", exact: Version(stringLiteral: scVersion)) - } + scDependency = .package(url: "https://github.com/apple/containerization.git", exact: Version(stringLiteral: scVersion)) } let releaseVersion = ProcessInfo.processInfo.environment["RELEASE_VERSION"] ?? "0.0.0"