Skip to content

Commit

Permalink
Merge pull request #979 from drudge/compose-builder-error
Browse files Browse the repository at this point in the history
fix: show error message when compose builder throws
  • Loading branch information
Siumauricio authored Dec 24, 2024
2 parents e3f1518 + 364d04f commit 830a254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/utils/builders/compose.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Compose Type: ${composeType} ✅`;

writeStream.write("Docker Compose Deployed: ✅");
} catch (error) {
writeStream.write("Error ❌");
writeStream.write(`Error ❌ ${(error as Error).message}`);
throw error;
} finally {
writeStream.end();
Expand Down

0 comments on commit 830a254

Please sign in to comment.