From e8ed1e510a0215e1a932a19158840c27b2df5804 Mon Sep 17 00:00:00 2001 From: vince Date: Tue, 18 Sep 2018 10:46:25 +0200 Subject: [PATCH] fix: #3896 update file path if we are reading the backup file --- lib/API/Startup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/API/Startup.js b/lib/API/Startup.js index 64c17aa4..b92c65d3 100644 --- a/lib/API/Startup.js +++ b/lib/API/Startup.js @@ -484,7 +484,7 @@ module.exports = function(CLI) { var processes; function readDumpFile(dumpFilePath) { - Common.printOut(cst.PREFIX_MSG + 'Restoring processes located in %s', cst.DUMP_FILE_PATH); + Common.printOut(cst.PREFIX_MSG + 'Restoring processes located in %s', dumpFilePath); try { var apps = fs.readFileSync(dumpFilePath); } catch (e) {