tutanota/start-desktop.sh
2023-09-22 12:09:18 +02:00

6 lines
261 B
Bash
Executable file

#!/usr/bin/env bash
if [[ $OSTYPE = darwin* ]]; then
ELECTRON_ENABLE_SECURITY_WARNINGS=TRUE ./node_modules/.bin/electron --inspect-brk=5858 ./build/ $1
else
ELECTRON_ENABLE_SECURITY_WARNINGS=TRUE ./node_modules/.bin/electron --inspect-brk=5858 ./build/ $1
fi