Skip to content

Commit

Permalink
[316] Remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
ducnimble committed Apr 19, 2023
1 parent 393c0da commit 06261d3
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions fastlane/Fastfile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class Fastfile: LaneFile {
desc("Build Staging app and upload to Firebase")

setAppVersion()
// bumpBuild()

buildAdHocStagingLane()

Expand All @@ -83,7 +82,6 @@ class Fastfile: LaneFile {
desc("Build Staging app and upload to Firebase")

setAppVersion()
// bumpBuild()

buildAdHocProductionLane()

Expand Down Expand Up @@ -119,7 +117,6 @@ class Fastfile: LaneFile {
desc("Build Production app and upload to TestFlight")

setAppVersion()
// bumpBuild()

buildAppStoreLane()

Expand Down Expand Up @@ -196,22 +193,4 @@ class Fastfile: LaneFile {
versionNumber: .userDefined(Constant.manualVersion)
)
}

// private func bumpBuild(buildNumber: Int = numberOfCommits()) {
// desc("Set build number with number of commits")
// incrementBuildNumber(
// buildNumber: .userDefined(String(buildNumber)),
// xcodeproj: .userDefined(Constant.projectPath)
// )
// }
//
// private func bumpAppstoreBuild() {
// desc("Set build number with App Store latest build")
// let theLatestBuildNumber = latestTestflightBuildNumber(
// appIdentifier: Constant.productionBundleId
// ) + 1
// incrementBuildNumber(
// buildNumber: .userDefined("\(theLatestBuildNumber)")
// )
// }
}

0 comments on commit 06261d3

Please sign in to comment.