From 2df37c4fa6931c280dbcd6f27cff0ca64a44c637 Mon Sep 17 00:00:00 2001 From: Igor Gassmann Date: Tue, 27 Mar 2018 18:42:26 -0400 Subject: [PATCH] chore: move downloaded daemon zip file to dist folder --- .gitignore | 1 - build/downloadDaemon.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e8d5eb911..f57e421ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ /node_modules /dist -/build/daemon.zip /static/daemon/lbrynet* /static/locales yarn-error.log diff --git a/build/downloadDaemon.js b/build/downloadDaemon.js index 6bf649544..754b986b7 100644 --- a/build/downloadDaemon.js +++ b/build/downloadDaemon.js @@ -23,7 +23,7 @@ const downloadDaemon = targetPlatform => const daemonURL = daemonURLTemplate .replace(/DAEMONVER/g, daemonVersion) .replace(/OSNAME/g, daemonPlatform); - const tmpZipPath = 'build/daemon.zip'; + const tmpZipPath = 'dist/daemon.zip'; console.log('\x1b[34minfo\x1b[0m Downloading daemon...'); axios