Skip to content

Commit

Permalink
Fix newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
Kylmakalle committed May 14, 2024
1 parent 399a3f3 commit 103db3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let tdPath = "\(rootPath)/td"
let tdIOSPath = "\(tdPath)/example/ios"

func getTDLibCommitSha() -> String {
return try! shell("cd \(tdPath) && git rev-parse --short=8 HEAD")
return try! shell("cd \(tdPath) && git rev-parse --short=8 HEAD").trimmingCharacters(in: .whitespacesAndNewlines)
}

func getTDLibVersion() -> String {
Expand Down

0 comments on commit 103db3f

Please sign in to comment.