Files

19 lines
298 B
Plaintext
Raw Permalink Normal View History

2021-12-20 19:55:21 -08:00
#!/usr/bin/env bash
set -euo pipefail
⚡test() {
_help-line "Run all the tests"
2021-12-20 19:55:21 -08:00
exit=0
for test in test/test*; do
bash $test || exit=1
done
exit $exit
}
2021-12-21 03:00:10 -08:00
deploy() {
_help-line "Publish ⚡️"
2021-12-21 03:00:10 -08:00
scp ⚡ v@commandcenter.ofvlad.xyz:/srv/http/apps.ofvlad.xyz/⚡
}
source ⚡