Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix not to create .env sample file with _buildAndArchive #270

Merged
merged 1 commit into from
May 10, 2017
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