* Translations workflow and tools * improved the name of the workflow * need this commit to trigger the workflow for the first time * swift tools can now run on CI * only strings and stringsdict will be committed * fixed a workflow issue * starting the workflow to save it * fixing downgrade issues * fixing URL usage * install localazy * fixing add-paths typo * downloaded strings * removing on push trigger * Update Tools/Sources/DownloadTranslations.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Added locheck for string verification * code formatting improvement * Update Tools/Sources/Locheck.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * pr suggestion --------- Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com>
13 lines
618 B
Swift
13 lines
618 B
Swift
import ArgumentParser
|
|
import Foundation
|
|
|
|
@main
|
|
struct Tools: ParsableCommand {
|
|
static var configuration = CommandConfiguration(abstract: "A collection of command line tools for ElementX",
|
|
subcommands: [BuildSDK.self,
|
|
SetupProject.self,
|
|
OutdatedPackages.self,
|
|
DownloadStrings.self,
|
|
Locheck.self])
|
|
}
|