Skip to content

Instantly share code, notes, and snippets.

@cipolleschi
Created July 25, 2020 08:58
Show Gist options
  • Select an option

  • Save cipolleschi/8f6e5c8e329f4f60f4bf230c290f36fb to your computer and use it in GitHub Desktop.

Select an option

Save cipolleschi/8f6e5c8e329f4f60f4bf230c290f36fb to your computer and use it in GitHub Desktop.
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