From 6824497365c8b0aba0a28594f519321be3f15865 Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Wed, 9 Oct 2024 15:17:41 +0100 Subject: [PATCH] fix: duplicate iota in walk.Type enum Signed-off-by: Brian McGee --- walk/walker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/walk/walker.go b/walk/walker.go index 072f21d2..ebf3e670 100644 --- a/walk/walker.go +++ b/walk/walker.go @@ -13,7 +13,7 @@ type Type int const ( Auto Type = iota - Git Type = iota + Git Filesystem )