14 lines
334 B
Plaintext
14 lines
334 B
Plaintext
# !/usr/bin/env bash
|
|
ENVS=""
|
|
while read -r line; do
|
|
if [[ "$line" == *"#"* ]]; then
|
|
continue
|
|
fi
|
|
ENVS+="$line "; done < local.env
|
|
|
|
echo "Building log-enricher locally"
|
|
eval "make build-log-enricher
|
|
echo "installing node modules"
|
|
cd bins/cybertron-symbolicator-react-native && npm install && cd ../../
|
|
$ENVS out/log-enricher"
|