Skip to content

Commit

Permalink
update so that lambda is built
Browse files Browse the repository at this point in the history
  • Loading branch information
antony committed Dec 11, 2020
1 parent 212e1e2 commit dce3cd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/adapter-begin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ module.exports = async function adapter(builder) {
builder.copy_client_files(static_directory);

builder.log.minor('Building lambda...');
copy(join(__dirname, 'files'), lambda_directory);
const local_lambda_dir = join(__dirname, 'files');
copy(local_lambda_dir, lambda_directory);

builder.log.minor('Installing lambda dependencies...');
child_process.execSync('npm install', {
Expand Down

0 comments on commit dce3cd3

Please sign in to comment.