From c781de8c24d47d794094aea172db4210fa92f6bb Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 25 Feb 2020 08:26:20 +1000 Subject: [PATCH] sort FStrings - easier to read - ensures things don't break when ankirspy and anki wheels built on separate machines due to mismatched directory order --- rslib/build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rslib/build.rs b/rslib/build.rs index 8e4f645e6..bf365568f 100644 --- a/rslib/build.rs +++ b/rslib/build.rs @@ -15,6 +15,8 @@ fn get_identifiers(ftl_text: &str) -> Vec { } } + idents.sort(); + idents }