From 60b39cd159bf7df04e8a958b55b22956da5482a0 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 22 Jul 2015 08:30:04 -0400 Subject: [PATCH] fix issue where tmp folder would get deleted --- lib/blockchain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blockchain.js b/lib/blockchain.js index fc7cc9ce..d089ae1b 100644 --- a/lib/blockchain.js +++ b/lib/blockchain.js @@ -58,7 +58,7 @@ Blockchain.prototype.run_command = function(address, use_tmp) { if (config.mine_when_needed) { if (use_tmp) { - cmd += "js /tmp/mine.js"; + cmd += "js /tmp/js/mine.js"; } else { cmd += "js node_modules/embark-framework/js/mine.js";