mirror of
https://github.com/ankitects/anki.git
synced 2025-11-07 13:17:12 -05:00
fix \n in buildhash
This commit is contained in:
parent
4917cabeb9
commit
cec5a260e5
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ pub fn version() -> &'static str {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn buildhash() -> &'static str {
|
pub fn buildhash() -> &'static str {
|
||||||
include_str!("../../meta/buildhash")
|
include_str!("../../meta/buildhash").trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn sync_client_version() -> &'static str {
|
pub(crate) fn sync_client_version() -> &'static str {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue