Translation workflow fix (#2271)

* Setup the translations workflow through ci_scripts
This commit is contained in:
Stefan Ceriu
2023-12-19 19:50:04 +02:00
committed by GitHub
parent ca7637f84b
commit a3006fe21c
3 changed files with 13 additions and 9 deletions

View File

@@ -4,9 +4,6 @@ import Foundation
struct SetupProject: ParsableCommand {
static var configuration = CommandConfiguration(abstract: "A tool to setup the required components to efficiently run and contribute to Element X iOS")
@Flag(help: "Use this only on ci to avoid installing failing packages")
var ci = false
func run() throws {
try setupGitHooks()
try brewBundleInstall()
@@ -19,10 +16,7 @@ struct SetupProject: ParsableCommand {
}
func brewBundleInstall() throws {
try Utilities.zsh("brew install --verbose xcodegen swiftgen swiftformat git-lfs sourcery mint kiliankoe/formulae/swift-outdated localazy/tools/localazy peripheryapp/periphery/periphery")
if !ci {
try Utilities.zsh("brew install swiftlint")
}
try Utilities.zsh("brew install xcodegen swiftgen swiftformat git-lfs sourcery mint kiliankoe/formulae/swift-outdated localazy/tools/localazy peripheryapp/periphery/periphery")
}
func mintPackagesInstall() throws {