Removes build variable that is not needed after launch. (#151)

This commit is contained in:
J Logan
2025-06-11 13:21:53 -07:00
committed by GitHub
parent 37fc68fee0
commit 2d262dc0fc
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"originHash" : "ea3144c0718528cd6faef7841a8c1fb6ae9339473ba78f9d5d87b16415d46d58",
"originHash" : "cb5cf6c245fe60f647e4e106917dc2e6559eda5170af37e63e52e549b2eed566",
"pins" : [
{
"identity" : "async-http-client",
+1 -5
View File
@@ -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"