From e7850df5c5a53850147b301674330b51705d5a41 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: Fri, 14 Feb 2025 11:25:00 +0100
Subject: [PATCH] no full in cloneall

---
 cloneall.bash | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/cloneall.bash b/cloneall.bash
index 1728082..85ea1ce 100755
--- a/cloneall.bash
+++ b/cloneall.bash
@@ -1,10 +1,10 @@
 #!/bin/bash
 set -vex
 
-REPOS=(${REPOS:=gitlab-profile core io integrate octree domain PM})
+REPOS=(${REPOS:=gitlab-profile easyc utils core io integrate octree domain PM})
 : ${SESSION_NAME:=hw}
-: ${HW_BUILD=$PWD/build/}
-: ${HW_DATA=$PWD/build/}
+: ${EC_BUILD=$PWD/build/}
+: ${EC_DATA=$PWD/data/}
 
 while getopts "cptlr:" opt
 do
@@ -42,8 +42,6 @@ if [ ! -z "$tmuxa" ]; then
     if ! tmux has-session -t $SESSION_NAME ; then
 	# Create a new tmux session
 
-	[[ -d full ]] && REPOS+=(full)
-	
 	for index in "${!REPOS[@]}"; do
             value="${REPOS[index]}"
 	    
-- 
GitLab