Files
cybertron/scripts/run-local

16 lines
226 B
Plaintext
Raw Normal View History

2024-07-23 14:16:26 +05:30
# !/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"
2024-09-18 16:42:54 +05:30