Skip to content

Commit 72103dd

Browse files
authored
Don't include codeconv files (#662)
* Don't include codeconv files * Update setup.jl
1 parent e18b7c2 commit 72103dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/setup.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using SPIRV_LLVM_Translator_unified_jll, SPIRV_Tools_jll
55
# include all helpers
66
include(joinpath(@__DIR__, "helpers", "runtime.jl"))
77
for file in readdir(joinpath(@__DIR__, "helpers"))
8-
if file != "runtime.jl"
8+
if endswith(file, ".jl") && file != "runtime.jl"
99
include(joinpath(@__DIR__, "helpers", file))
1010
end
1111
end

0 commit comments

Comments
 (0)