From 6423f85614dc87a320625d2efe2088d648c127ff Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 04 Aug 2023 06:28:34 +0000
Subject: [PATCH] fix execsync
---
quartz/trace.ts | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/quartz/trace.ts b/quartz/trace.ts
index d9d45d2..803fd2f 100644
--- a/quartz/trace.ts
+++ b/quartz/trace.ts
@@ -5,7 +5,9 @@
const stack = err.stack
console.log()
console.log(
- chalk.bgRed.white.bold(" ERROR ") +
+ "\n" +
+ chalk.bgRed.black.bold(" ERROR ") +
+ "\n" +
chalk.red(` ${msg}`) +
(err.message.length > 0 ? `: ${err.message}` : ""),
)
--
Gitblit v1.10.0