only _try_ to yarn install...
parent
19094bdcc5
commit
7b7f728740
|
|
@ -12,7 +12,11 @@ const { config } = require('../package.json');
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
const app = express();
|
const app = express();
|
||||||
|
|
||||||
|
try {
|
||||||
appendLogs('yarn', execSync(`yarn`));
|
appendLogs('yarn', execSync(`yarn`));
|
||||||
|
} catch (e) {
|
||||||
|
appendLogs('failed to yarn install...')
|
||||||
|
}
|
||||||
|
|
||||||
logp('==================================');
|
logp('==================================');
|
||||||
logp('Starting Valnet Node as a Service!');
|
logp('Starting Valnet Node as a Service!');
|
||||||
|
|
|
||||||
Reference in New Issue