mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-05-24 08:45:55 -04:00
11 lines
194 B
Bash
Executable File
11 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
Fail()
|
|
{
|
|
echo "FATAL($0): $1"
|
|
exit 1
|
|
}
|
|
|
|
cp ../../../source/js/astronomy.ts . || Fail "Error copying astronomy TypeScript code."
|
|
npm test || Fail "Error in unit test."
|
|
exit 0
|