import ArgumentParser 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") func run() throws { try setupGitHooks() try brewBundleInstall() try xcodegen() } func setupGitHooks() throws { try Utilities.zsh("git config core.hooksPath .githooks") } func brewBundleInstall() throws { try Utilities.zsh("brew install xcodegen swiftgen swiftlint swiftformat git-lfs") } func xcodegen() throws { try Utilities.zsh("xcodegen") } }