diff --git a/cmd/tools/vcreate.v b/cmd/tools/vcreate.v index f4e9a7d9cf..d5f44a7507 100644 --- a/cmd/tools/vcreate.v +++ b/cmd/tools/vcreate.v @@ -71,6 +71,9 @@ ${name} *.dylib *.dll +# Ignore binary output folders +bin/ + # Ignore common editor/system specific metadata .DS_Store .idea/ diff --git a/cmd/tools/vcreate_test.v b/cmd/tools/vcreate_test.v index 9ac4764992..ae16ea77fa 100644 --- a/cmd/tools/vcreate_test.v +++ b/cmd/tools/vcreate_test.v @@ -34,6 +34,9 @@ fn init_and_check() ! { '*.dylib', '*.dll', '', + '# Ignore binary output folders', + 'bin/', + '', '# Ignore common editor/system specific metadata', '.DS_Store', '.idea/',