From 5a765f74d3275f5043e66e32b53ef9602dbbc331 Mon Sep 17 00:00:00 2001 From: zztkm Date: Tue, 24 Sep 2024 23:28:42 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=20print=20=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- builder.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/builder.go b/builder.go index deeb771..de53a4a 100644 --- a/builder.go +++ b/builder.go @@ -119,15 +119,9 @@ func (b Builder) Run() error { func (b Builder) purgeIgnoreFiles(files []string) []string { var res []string - println("IgnoreFiles:") - for _, ignoreFile := range b.config.Build.IgnoreFiles { - println(ignoreFile) - } - println("IgnoreFiles end") for _, path := range files { // path からファイル名を取得 name := filepath.Base(path) - println(name) // name が IgnoreFiles に含まれているかを確認し、含まれている場合は削除 if slices.Contains(b.config.Build.IgnoreFiles, name) { continue