Fix commit hash output in version info (#1855)

This commit is contained in:
Kiall Mac Innes
2019-08-13 19:03:08 +01:00
committed by Koen Kanters
parent 6abe7d2fd7
commit d96c3da8d5
+1 -1
View File
@@ -91,7 +91,7 @@ function getZigbee2mqttVersion(callback) {
if (err) {
try {
commitHash = require('../.hash.json').hash;
commitHash = require('../../.hash.json').hash;
} catch (error) {
commitHash = 'unknown';
}