From 7eda3c91277aedc4cf8b2a620ccbe8e2e0b5bce0 Mon Sep 17 00:00:00 2001 From: CncAnon Date: Wed, 30 Aug 2023 11:16:58 +0300 Subject: [PATCH] Use --no-audit and remove infinite loop for the *nix script. --- start.bat | 2 +- start.sh | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/start.bat b/start.bat index f9e7f67..a72a345 100644 --- a/start.bat +++ b/start.bat @@ -1,3 +1,3 @@ -call npm install +call npm install --no-audit node main.js pause \ No newline at end of file diff --git a/start.sh b/start.sh index a03d01c..d6c0ef9 100755 --- a/start.sh +++ b/start.sh @@ -1,9 +1,4 @@ #!/bin/bash npm install -while true; -do - node main.js - echo sleep 5; - sleep 5; -done \ No newline at end of file +node main.js --no-audit \ No newline at end of file