mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-03 04:59:51 -05:00
I'm trying to make it easier for first-time visitors to this project to find the source code and documentation to get started quickly. Moved directories that are only used by contributors (mostly myself) out of the root and into the 'generate' directory where they are less distracting.
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
Fail()
|
|
{
|
|
echo "FATAL($0): $1"
|
|
exit 1
|
|
}
|
|
|
|
dotnet build --output ${PWD}/exe || Fail "Error building csdown"
|