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.
1 parent d326ec9 commit 72b5c97Copy full SHA for 72b5c97
Sources/SakeCLI/SakeAppManager/SakeAppManagerFileHandle.swift
@@ -31,14 +31,8 @@ final class DefaultSakeAppManagerFileHandle: SakeAppManagerFileHandle {
31
path + "/Sakefile.swift"
32
}
33
34
- let defaultAppDirectoryName = "SakeApp"
35
-
36
- init(path: String?) {
37
- if let path {
38
- self.path = URL(fileURLWithPath: path).standardizedFileURL.path
39
- } else {
40
- self.path = FileManager.default.currentDirectoryPath + "/" + defaultAppDirectoryName
41
- }
+ init(path: String) {
+ self.path = URL(fileURLWithPath: path).standardizedFileURL.path
42
43
44
func createProjectFiles() throws {
0 commit comments