Skip to content

Commit 3cc38e3

Browse files
committed
don't log warning if env file doesn't exist
Rather than adding CLI flags and introducing log levels, this seems like the simplest way to address #95.
1 parent 760df08 commit 3cc38e3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/envs.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ function loadEnvsFile(path) {
127127
var env, data;
128128

129129
if(!fs.existsSync(path)) {
130-
cons.Warn("No ENV file found");
131130
env = {};
132131
} else {
133132
data = fs.readFileSync(path);

0 commit comments

Comments
 (0)