Skip to content

Commit

Permalink
@dealmore/terraform-next-build@0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ofhouse committed Jul 24, 2020
1 parent 632a523 commit 7cf71f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/terraform-next-build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dealmore/terraform-next-build",
"version": "0.0.1",
"version": "0.0.2",
"main": "index.js",
"license": "Apache-2.0",
"repository": {
Expand Down
5 changes: 4 additions & 1 deletion packages/terraform-next-build/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,12 @@ async function buildCommand({ skipDownload = false }: BuildProps = {}) {
outputDir: outputDir,
});

console.log('hello world!', buildResult);
console.log('buildResult:', buildResult);
} catch (err) {
console.error(err);

// If an error occurs make the task fail
process.exitCode = 1;
}

// Cleanup tmpDir
Expand Down

0 comments on commit 7cf71f9

Please sign in to comment.