From 10193b0e915a582d045e5e3019930f3e59c6cc08 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Sat, 14 Dec 2024 09:43:31 +0530 Subject: [PATCH] fix: include files if they end with .jl --- src/mlir/Dialects.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mlir/Dialects.jl b/src/mlir/Dialects.jl index 50a90efff..87c63b199 100644 --- a/src/mlir/Dialects.jl +++ b/src/mlir/Dialects.jl @@ -17,6 +17,7 @@ function operandsegmentsizes(segments) end for file in readdir(joinpath(@__DIR__, "Dialects")) + endswith(file, ".jl") || continue include(joinpath(@__DIR__, "Dialects", file)) end