mirror of
https://github.com/tutao/tutanota.git
synced 2025-10-19 07:53:47 +00:00
6 lines
261 B
Bash
Executable file
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
|