We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5449fa4 + 58c2d3a commit 4bb4287Copy full SHA for 4bb4287
Sources/run-script/main.swift
@@ -12,7 +12,7 @@ import ArgumentParser
12
13
#if os(macOS)
14
enum CommandError: LocalizedError {
15
- case configFileNotExsisted
+ case configFileNotExisted
16
}
17
18
enum Timing: String, EnumerableFlag, ExpressibleByArgument {
@@ -54,7 +54,7 @@ struct RunScript: ParsableCommand {
54
let decoder = YAMLDecoder()
55
56
guard fileManager.fileExists(atPath: config) else {
57
- throw CommandError.configFileNotExsisted
+ throw CommandError.configFileNotExisted
58
59
60
let data = try Data(contentsOf: configFileURL)
0 commit comments