Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Commit

Permalink
Fix .includes() is not a function (:88)
Browse files Browse the repository at this point in the history
  • Loading branch information
axelchalon committed Jun 24, 2018
1 parent a2cc6f0 commit a76cfef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/operations/runParity.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module.exports = {
.then(() => fsChmod(parityPath(), '755')) // Should already be 755 after download, just to be sure
.then(() => {
const logStream = fs.createWriteStream(logFile, { flags: 'a' });
let logLastLine; // Always contains last line of the logFile
let logLastLine = ''; // Always contains last line of the logFile

// Run an instance of parity with the correct args
parity = spawn(parityPath(), parityArgv);
Expand Down

0 comments on commit a76cfef

Please sign in to comment.