1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: change paths to cope with Debian packaging
Author: Julien Puydt
Forwarded: no
--- a/scripts/build.js
+++ b/scripts/build.js
@@ -6,7 +6,7 @@
const parsePropertyValueAliases = function() {
const propertyValueAliasesPerProperty = new Map();
- const source = fs.readFileSync('./data/PropertyValueAliases.txt', 'utf8');
+ const source = fs.readFileSync('../data/PropertyValueAliases.txt', 'utf8');
const lines = source.split('\n');
for (const line of lines) {
if (!line || /^#/.test(line)) {
|