mirror of https://github.com/embarklabs/embark.git
Defaults dont belong in environment variables
This commit is contained in:
parent
6494bfb858
commit
31deca4729
|
@ -26,7 +26,6 @@ if (!process.env.PKG_PATH) {
|
||||||
}
|
}
|
||||||
|
|
||||||
process.env.DEFAULT_DIAGRAM_PATH = utils.joinPath(process.env.DAPP_PATH, 'diagram.svg');
|
process.env.DEFAULT_DIAGRAM_PATH = utils.joinPath(process.env.DAPP_PATH, 'diagram.svg');
|
||||||
process.env.DEFAULT_CMD_HISTORY_PATH = utils.joinPath(process.env.DAPP_PATH, '.embark', 'cmd_history');
|
|
||||||
process.env.DEFAULT_CMD_HISTORY_SIZE = 20;
|
process.env.DEFAULT_CMD_HISTORY_SIZE = 20;
|
||||||
|
|
||||||
class Cmd {
|
class Cmd {
|
||||||
|
|
|
@ -2,8 +2,7 @@ let fs = require('../../lib/core/fs');
|
||||||
|
|
||||||
class CommandHistory {
|
class CommandHistory {
|
||||||
constructor(options = {}) {
|
constructor(options = {}) {
|
||||||
this.cmdHistoryFile = options.cmdHistoryFile
|
this.cmdHistoryFile = options.cmdHistoryFile || fs.dappPath('.embark', 'cmd_history');
|
||||||
|| process.env.DEFAULT_CMD_HISTORY_PATH;
|
|
||||||
this.history = [];
|
this.history = [];
|
||||||
this.pointer = -1;
|
this.pointer = -1;
|
||||||
this.loadHistory();
|
this.loadHistory();
|
||||||
|
|
|
@ -16,7 +16,7 @@ class Console {
|
||||||
this.ipc = options.ipc;
|
this.ipc = options.ipc;
|
||||||
this.config = options.config;
|
this.config = options.config;
|
||||||
this.history = [];
|
this.history = [];
|
||||||
this.cmdHistoryFile = options.cmdHistoryFile || process.env.DEFAULT_CMD_HISTORY_PATH;
|
this.cmdHistoryFile = options.cmdHistoryFile || fs.dappPath('.embark', 'cmd_history');
|
||||||
this.loadHistory();
|
this.loadHistory();
|
||||||
|
|
||||||
if (this.ipc.isServer()) {
|
if (this.ipc.isServer()) {
|
||||||
|
|
Loading…
Reference in New Issue