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