Skip to content

Commit

Permalink
Fix not to create .env sample file with _buildAndArchive (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
abetomo authored and DeviaVir committed May 10, 2017
1 parent ef408f2 commit dd65961
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,10 @@ Lambda.prototype._archivePrebuilt = function (program, archive_callback) {
};

Lambda.prototype._buildAndArchive = function (program, archive_callback) {
this._createSampleFile('.env', '.env');
if (!fs.existsSync('.env')) {
console.warn('[Warning] `.env` file does not exist.');
console.info('Execute `node-lambda setup` as necessary and set it up.');
}

// Warn if not building on 64-bit linux
var arch = process.platform + '.' + process.arch;
Expand Down

0 comments on commit dd65961

Please sign in to comment.