You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
340 B
11 lines
340 B
#!/usr/bin/env node
|
|
let fs = require('fs');
|
|
process.env.SRE_TOP_PATH = __dirname + '/..';
|
|
if (fs.existsSync(process.env.SRE_TOP_PATH + '/lib/mathmaps')) {
|
|
process.env.SRE_JSON_PATH = process.env.SRE_TOP_PATH + '/lib/mathmaps';
|
|
} else {
|
|
process.env.SRE_JSON_PATH = process.env.SRE_TOP_PATH + '/src/mathmaps';
|
|
}
|
|
require('../lib/sre.js')
|
|
|