meet.sh: Removes shallow clone option

Removes the `--depth 1` option from the `git clone` command.
This ensures that the entire repository history is cloned by default.
This commit is contained in:
Carlos Santos 2025-10-16 14:11:02 +02:00
parent 0274308460
commit 3724dce30b

View File

@ -501,7 +501,7 @@ clone_meet_pro() {
echo -e "${GREEN}Attempting to clone '$REPO_URL' into ./$TARGET_DIR...${NC}"
# Use shallow clone to be quicker by default
if git clone --depth 1 "$REPO_URL" "$TARGET_DIR"; then
if git clone "$REPO_URL" "$TARGET_DIR"; then
echo
echo -e "${GREEN}✓ Repository cloned into ./$TARGET_DIR${NC}"
return 0