Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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