
15 Jan
2021
15 Jan
'21
8:31 p.m.
commit 5a89747fa226c99aef769cbabbbd70571d72f239 Author: Arlo Breault <arlolra@gmail.com> Date: Thu Jan 14 14:52:37 2021 -0500 Filter out dotfiles Fixes #18 --- make.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.js b/make.js index 38408aa..81a5b9b 100755 --- a/make.js +++ b/make.js @@ -70,7 +70,7 @@ var getDisplayName = function(locale) { var getDirs = function() { let dirs = readdirSync('translation').filter((f) => { const s = statSync(`translation/${f}`); - return s.isDirectory(); + return s.isDirectory() && !/^\./.test(f); }); dirs.push('en_US'); dirs.sort();
1606
Age (days ago)
1606
Last active (days ago)
0 comments
1 participants
participants (1)
-
arlo@torproject.org