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