Commits on Source (2)
......@@ -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);
......
......@@ -11,11 +11,6 @@ rm -rf $BUILDDIR
mkdir -p $BUILDDIR/src
BUILD_DEST=$BUILDDIR/build npm run ci:build || EXITCODE=1
# Copy rust files
cp Cargo.precompiled.toml $BUILDDIR/Cargo.toml
cp build.rs $BUILDDIR
cp src/lib.rs* $BUILDDIR/src
# back to root
popd
......