blob: ec2c5d50e76617df1fd9984f56861c51863f9dc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Description: Fix linux paths
--- vdhcoapp.old/app/native-autoinstall.js
+++ vdhcoapp.new/app/native-autoinstall.js
@@ -64,7 +64,7 @@
}
let config;
try {
- config = JSON.parse(fs.readFileSync(path.resolve(path.dirname(process.execPath), "./config.json"), "utf8"));
+ config = JSON.parse(fs.readFileSync(path.resolve(path.dirname(process.execPath), "../share/vdhcoapp/config.json"), "utf8"));
} catch (err) {
DisplayMessage("Cannot read config file: " + err.message, "Error");
process.exit(-1);
|