Created
July 25, 2020 08:58
-
-
Save cipolleschi/8f6e5c8e329f4f60f4bf230c290f36fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| do { | |
| let version = try String(contentsOfFile: ".version") | |
| .trimmingCharacters(in: CharacterSet.init(charactersIn: " \n")) | |
| print(version) | |
| } catch { | |
| print("[ERROR] Unable to read file .version.\nError: \(error.localizedDescription)") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment