diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2018-10-18 21:31:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 21:31:59 +0200 |
commit | fd7a1b51126f8b8f889807cb7d56bb3626a0e0b5 (patch) | |
tree | c1357549c731a9989c88ae6faccfecfd0994a2e0 /app.js | |
parent | 1098c63adb9aee5d7f416ede1065f3dc4cb8d67e (diff) | |
parent | a5fc50bca8c5d351ac87b2334cea55388db5af09 (diff) | |
download | Luxcena-Neo-fd7a1b51126f8b8f889807cb7d56bb3626a0e0b5.tar.gz Luxcena-Neo-fd7a1b51126f8b8f889807cb7d56bb3626a0e0b5.zip |
Merge pull request #5 from JakobST1n/dev
:construction: Update install-dir-path to new user
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ let io = require("socket.io").listen(server); // Firstly we set up all globals, check that the usrData dir exists, if not, we run the setup let srcDir = __dirname; -let installDir = "/home/pi/luxcena-neo-install/" +let installDir = "/home/lux-neo/install/" if (process.argv.length >= 3) { installDir = process.argv[2]; } let dataDir = installDir + "/userdata/"; if (!fse.existsSync(dataDir)) { throw new Error("APPDIR not found! Exiting..."); } |