19 lines
298 B
Bash
Executable File
19 lines
298 B
Bash
Executable File
#!/usr/bin/env bash
|
||
set -euo pipefail
|
||
|
||
⚡test() {
|
||
_help-line "Run all the tests"
|
||
exit=0
|
||
for test in test/test*; do
|
||
bash $test || exit=1
|
||
done
|
||
exit $exit
|
||
}
|
||
|
||
⚡️deploy() {
|
||
_help-line "Publish ⚡️"
|
||
scp ⚡ v@commandcenter.ofvlad.xyz:/srv/http/apps.ofvlad.xyz/⚡
|
||
}
|
||
|
||
source ⚡
|