This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git

commit 412c8251eeabb12412530ba922c47436c5ff1386
Author: HTHou <[email protected]>
AuthorDate: Tue Jul 11 19:49:13 2023 +0800

    exit process when error
---
 deploy.cjs         | 2 +-
 deploy_staging.cjs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/deploy.cjs b/deploy.cjs
index bc8838c..1754070 100644
--- a/deploy.cjs
+++ b/deploy.cjs
@@ -26,6 +26,6 @@ ghpages.publish('src/.vuepress/dist', {
 }, (err) => {
   if (err instanceof Error) {
     console.error(err);
-    process.exit(1)
+    process.exit(1);
   }
 });
diff --git a/deploy_staging.cjs b/deploy_staging.cjs
index c550800..a327ccd 100644
--- a/deploy_staging.cjs
+++ b/deploy_staging.cjs
@@ -26,6 +26,6 @@ ghpages.publish('src/.vuepress/dist', {
 }, (err) => {
   if (err instanceof Error) {
     console.error(err);
-    process.exit(1)
+    process.exit(1);
   }
 });

Reply via email to