tutanota/start-desktop.sh

7 lines
261 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
if [[ $OSTYPE = darwin* ]]; then
2023-04-17 16:56:50 +02:00
ELECTRON_ENABLE_SECURITY_WARNINGS=TRUE ./node_modules/.bin/electron --inspect-brk=5858 ./build/ $1
else
2023-04-17 16:56:50 +02:00
ELECTRON_ENABLE_SECURITY_WARNINGS=TRUE ./node_modules/.bin/electron --inspect-brk=5858 ./build/ $1
fi