-
Notifications
You must be signed in to change notification settings - Fork 1
/
do
executable file
·51 lines (40 loc) · 1.05 KB
/
do
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
set -Eeuo pipefail
IFS=$'\n\t'
trap 'echo "Aborting due to errexit on line $LINENO. Exit code: $?" >&2' ERR
readonly DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
###############################################################################
# Program Functions
###############################################################################
##DOC run
task_run() {
npm run dev
}
##DOC update-data
task_update-data() {
npm run update-msci
# yahoo api now requires authentication
# npm run update-yahoo
# npm run update-inflation
npm run generate-data
}
###############################################################################
# Helper functions
###############################################################################
usage() {
echo "Commands:"
grep -e "^##DOC" <"$(basename "$0")" | sed "s/^##DOC \(.*\)/ \1/"
exit 1
}
main() {
CMD=${1:-}
shift || true
pushd "$DIR" >/dev/null
if type "task_${CMD}" &>/dev/null; then
"task_${CMD}" "$@"
else
usage
fi
popd >/dev/null
}
main "$@"