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:
parent
0274308460
commit
3724dce30b
2
meet.sh
2
meet.sh
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user