kubernetes/minikube

nerdctl-bin package files use spaces instead of tabs

已关闭

#23,437 创建于 2026年8月4日

 (1 条评论) (0 个反应) (0 位负责人)Go (5,222 个派生)batch import
good first issue

仓库指标

星标
 (31,799 个星标)
PR 合并指标
 (平均合并 12天 19小时) (30 天内合并 43 个 PR)

描述

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.

贡献者指南