Skip to content

Commit

Permalink
proper error output, deleting unneeded stuff, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
g-Off committed Jun 7, 2019
1 parent 449c48c commit e5f6710
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 50 deletions.
42 changes: 0 additions & 42 deletions Makefile

This file was deleted.

6 changes: 5 additions & 1 deletion Sources/XcoderKit/Error.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

enum Error: Swift.Error, CustomStringConvertible {
enum Error: LocalizedError, CustomStringConvertible {
case invalidProject(path: String?)
case invalidGroup(String)
case invalidTarget(String)
Expand All @@ -26,4 +26,8 @@ enum Error: Swift.Error, CustomStringConvertible {
return "Invalid target \(targetName)"
}
}

var errorDescription: String? {
return description
}
}
2 changes: 1 addition & 1 deletion Sources/xcoder/Version.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Utility

extension Version {
static var current: Version = "0.3.1"
static var current: Version = "0.3.2"
}
5 changes: 0 additions & 5 deletions Version.swift.template

This file was deleted.

1 change: 0 additions & 1 deletion overrides.xcconfig

This file was deleted.

0 comments on commit e5f6710

Please sign in to comment.