kubernetes/minikube

nerdctl-bin package files use spaces instead of tabs

Closed

#23,437 opened on Aug 4, 2026

 (1 comment) (0 reactions) (0 assignees)Go (5,222 forks)batch import
good first issue

Repository metrics

Stars
 (31,799 stars)
PR merge metrics
 (Avg merge 12d 19h) (43 merged PRs in 30d)

Description

Bug

The nerdctl-bin Buildroot package files use spaces for indentation where tabs are required by Buildroot/Kconfig/Make conventions.

Affected files:

  • deploy/iso/minikube-iso/arch/aarch64/package/nerdctl-bin-aarch64/Config.in — spaces instead of tabs
  • deploy/iso/minikube-iso/arch/x86_64/package/nerdctl-bin/Config.in — spaces instead of tabs
  • deploy/iso/minikube-iso/arch/aarch64/package/nerdctl-bin-aarch64/nerdctl-bin.mk — spaces instead of tabs in INSTALL_TARGET_CMDS
  • deploy/iso/minikube-iso/arch/x86_64/package/nerdctl-bin/nerdctl-bin.mk — spaces instead of tabs in INSTALL_TARGET_CMDS

Other packages (e.g. crictl-bin, helm-bin) correctly use tabs.

Fix

Replace leading spaces with tabs in all four files listed above.

Contributor guide