Merge pull request #3919 from Unitech/message_backup_file

fix: #3896 update file path if we are reading the backup file
This commit is contained in:
Alexandre Strzelewicz 2018-09-19 11:58:07 +02:00 committed by GitHub
commit aa4bf150ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {