lightning-runner/go

19 lines
308 B
Plaintext
Raw Normal View History

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