From f3d5e0f66b9530c74468c2055e45505eaddb7d16 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 19 Apr 2023 11:28:59 +0700 Subject: [PATCH] [316] Remove commented code --- fastlane/Fastfile.swift | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/fastlane/Fastfile.swift b/fastlane/Fastfile.swift index b9520e1b..ad1b648d 100644 --- a/fastlane/Fastfile.swift +++ b/fastlane/Fastfile.swift @@ -75,7 +75,6 @@ class Fastfile: LaneFile { desc("Build Staging app and upload to Firebase") setAppVersion() -// bumpBuild() buildAdHocStagingLane() @@ -91,7 +90,6 @@ class Fastfile: LaneFile { desc("Build Production app and upload to Firebase") setAppVersion() -// bumpBuild() buildAdHocProductionLane() @@ -127,7 +125,6 @@ class Fastfile: LaneFile { desc("Build Production app and upload to TestFlight") setAppVersion() -// bumpBuild() buildAppStoreLane() @@ -190,22 +187,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)") -// ) -// } }