fix coin install bugs
This commit is contained in:
parent
3e456246b0
commit
5cf4ee292a
3 changed files with 5 additions and 8 deletions
|
|
@ -63,7 +63,7 @@ function writeSupervisorConfig (coinRec, cmd) {
|
|||
const blockchain = coinRec.code
|
||||
|
||||
const supervisorConfig = `[program:${blockchain}]
|
||||
command=${cmd}
|
||||
command=nice ${cmd}
|
||||
autostart=true
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/supervisor/${blockchain}.err.log
|
||||
|
|
@ -99,6 +99,7 @@ function writeFile (path, content) {
|
|||
} catch (err) {
|
||||
if (err.code === 'EEXIST') {
|
||||
logger.info(`${path} exists, skipping.`)
|
||||
return
|
||||
}
|
||||
|
||||
throw err
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ function processCryptos (codes) {
|
|||
|
||||
function setupCrypto (crypto) {
|
||||
logger.info(`Installing ${crypto.display}...`)
|
||||
const cryptoDir = coinUtils.cryptoConfigDir(crypto)
|
||||
const cryptoDir = coinUtils.cryptoDir(crypto)
|
||||
makeDir.sync(cryptoDir)
|
||||
const cryptoPlugin = plugin(crypto)
|
||||
const oldDir = process.cwd()
|
||||
|
|
@ -85,7 +85,7 @@ function plugin (crypto) {
|
|||
|
||||
function run () {
|
||||
const choices = _.map(c => {
|
||||
const checked = isInstalledSoftware(c) && isInstalledVolume()
|
||||
const checked = isInstalledSoftware(c) && isInstalledVolume(c)
|
||||
return {
|
||||
name: c.display,
|
||||
value: c.code,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue