mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 15:46:28 +08:00
9 lines
138 B
Text
9 lines
138 B
Text
|
#!/usr/bin/env bash
|
||
|
if [ -e .setup-complete ]; then
|
||
|
cd N1
|
||
|
./atom.sh "$@"
|
||
|
else
|
||
|
echo "ERROR: Please run ./setup.sh first"
|
||
|
exit 1
|
||
|
fi
|