Skip to content

Commit f4f3053

Browse files
committed
fixup
1 parent 668b95c commit f4f3053

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

utils/kernel-upgrade.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ check_directories() {
5050

5151
if [ ! -d "$LINUX_DIR" ]; then
5252
log_info "Linux directory '$LINUX_DIR' not found, cloning..."
53-
if git clone "$KKIT_URL" "$LINUX_DIR"; then
53+
# Use HTTPS URL for cloning (git URL rewrite will handle remotes later)
54+
CLONE_URL="https://github.com/kernelkit/linux.git"
55+
if git clone "$CLONE_URL" "$LINUX_DIR"; then
5456
log_info "Successfully cloned linux repository"
5557
else
5658
log_error "Failed to clone linux repository"

0 commit comments

Comments
 (0)