12 lines
222 B
Plaintext
12 lines
222 B
Plaintext
|
|
# !/usr/bin/env bash
|
||
|
|
ENVS=""
|
||
|
|
while read -r line; do
|
||
|
|
if [[ "$line" == *"#"* ]]; then
|
||
|
|
continue
|
||
|
|
fi
|
||
|
|
ENVS+="$line "; done < local.env
|
||
|
|
|
||
|
|
echo "Building cybertron locally"
|
||
|
|
eval "make build-cybertron
|
||
|
|
$ENVS out/cybertron"
|