mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
2442e0d6b6
Summary: Getting rid of things that I'm pretty sure we don't need. Lmk if you see anything to the otherwise. Test Plan: edgehill --test Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1799
22 lines
374 B
Bash
22 lines
374 B
Bash
#!/bin/sh
|
|
|
|
while getopts ":fhtvw-:" opt; do
|
|
case "$opt" in
|
|
-)
|
|
case "${OPTARG}" in
|
|
foreground|help|test|version|wait)
|
|
EXPECT_OUTPUT=1
|
|
;;
|
|
esac
|
|
;;
|
|
f|h|t|v|w)
|
|
EXPECT_OUTPUT=1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ $EXPECT_OUTPUT ]; then
|
|
"$0/../../../atom.exe" "$@"
|
|
else
|
|
"$0/../../app/apm/bin/node.exe" "$0/../atom.js" "$@"
|
|
fi
|