feat: finished editable profiles; profile prop to pull or not on build; profile props to set alternate component repos

This commit is contained in:
Gabriele Musco 2023-06-25 15:25:15 +02:00
commit 5382ff92d2
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE
21 changed files with 418 additions and 112 deletions

View file

@ -9,13 +9,22 @@ exit 1
#
# PREFIX=$2
#
# if [[ -z $REPO_DIR ]] || [[ -z $PREFIX ]]; then
# echo "Usage: $0 REPO_DIR PREFIX"
# DO_PULL=$3
#
# REPO_URL=$4
#
# if [[ -z $REPO_DIR ]] || [[ -z $PREFIX ]] || [[ -z $DO_PULL ]]; then
# echo "Usage: $0 REPO_DIR PREFIX DO_PULL [REPO_URL]"
# exit 1
# fi
#
# "$(dirname -- "$0")/_clone_or_pull.sh" "https://github.com/cntools/libsurvive" "$REPO_DIR"
# if [[ -z $REPO_URL ]]; then
# REPO_URL="https://gitlab.freedesktop.org/mateosss/basalt"
# fi
#
# "$(dirname -- "$0")/_clone_or_pull.sh" "$REPO_URL" "$REPO_DIR" "$DO_PULL"
#
# cd "$REPO_DIR"
# rm -rf build
# mkdir -p build
# cd build