Skip to content
Snippets Groups Projects
Commit 7d505325 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

remove 'debug language' from list of supported languages in compress script -...

remove 'debug language' from list of supported languages in compress script - this is a virtual language used for testing - closes #1235
parent f5c79a5a
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,10 @@ const staticPath = path.join(__dirname, '..', 'resources', 'static');
var langs = config.get('supported_languages');
// remove the "debug" language.
var i = langs.indexOf(config.get('debug_lang'));
if (i != -1) langs.splice(i, 1);
var all = resources.all(langs);
var cc = new computecluster({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment