We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 668b95c commit f4f3053Copy full SHA for f4f3053
utils/kernel-upgrade.sh
@@ -50,7 +50,9 @@ check_directories() {
50
51
if [ ! -d "$LINUX_DIR" ]; then
52
log_info "Linux directory '$LINUX_DIR' not found, cloning..."
53
- if git clone "$KKIT_URL" "$LINUX_DIR"; then
+ # 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
56
log_info "Successfully cloned linux repository"
57
else
58
log_error "Failed to clone linux repository"
0 commit comments