From a90aeb278b75fa233033300bcfdb00baf6a149b1 Mon Sep 17 00:00:00 2001 From: Ship <79712264+ShipmasterKyle@users.noreply.github.com> Date: Sun, 24 Jul 2022 11:53:35 -0400 Subject: [PATCH] Fix item 1 in #10 Seems like MacOS does not support sandbox repairs. We'll just make a seperate install method to avoid this. --- macInstall.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 macInstall.sh diff --git a/macInstall.sh b/macInstall.sh new file mode 100644 index 0000000..0f703ef --- /dev/null +++ b/macInstall.sh @@ -0,0 +1,9 @@ +# Install Node Modules +echo "Installing..." +cd src +npm install +# Update Electron +echo "Fixing potential vulnerabilities..." +npm audit fix --force +echo "Sandbox is not supported so we'll go ahead and quit." +echo "Complete! Run cd src then npm start to open." \ No newline at end of file