Init commit repo setup

This commit is contained in:
Lokesh Dugar
2024-07-23 14:16:26 +05:30
parent 72157608cd
commit 2012cd8940
29 changed files with 1012 additions and 1 deletions

11
scripts/run-local Normal file
View File

@@ -0,0 +1,11 @@
# !/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"