From 72355bb65a372c986e35e3f880ea5f8465712bc7 Mon Sep 17 00:00:00 2001 From: bryan Date: Tue, 23 Sep 2025 15:37:13 -0400 Subject: [PATCH] Use fetch --all to grab wt breanches --- openwrtbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index 1a15ab3..f75a58b 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -530,7 +530,7 @@ from_source() { # Pull or clone source repo if [[ -d "$SRC_DIR" ]]; then - execute git -C "$SRC_DIR" pull + execute git -C "$SRC_DIR" fetch --all --prune --tags else execute mkdir -p "$SRC_DIR" execute git clone "$src_url" "$SRC_DIR"