13 lines
125 B
Bash
13 lines
125 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
pushd "$(dirname "$0")"
|
|
|
|
# Generate common::gen::* code.
|
|
pushd gen
|
|
npm i
|
|
bash gen.sh
|
|
popd
|
|
|
|
popd
|