aboutsummaryrefslogtreecommitdiff
path: root/CI/supporttest.js
diff options
context:
space:
mode:
Diffstat (limited to 'CI/supporttest.js')
-rw-r--r--CI/supporttest.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/CI/supporttest.js b/CI/supporttest.js
index b735425..8076637 100644
--- a/CI/supporttest.js
+++ b/CI/supporttest.js
@@ -1,2 +1,7 @@
+let errored = false
+
console.log("This is running nodejs code rn")
-console.error("This is an error!") \ No newline at end of file
+console.error("This is an error!")
+errored = true
+
+process.exit(errored?1:0) \ No newline at end of file