Skip to content

Commit

Permalink
Ignore .git
Browse files Browse the repository at this point in the history
  • Loading branch information
jackTabsCode committed Jan 1, 2025
1 parent 19ca2b1 commit 372a4a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ fn snapshot_from_fs_path(path: &Path) -> io::Result<VfsSnapshot> {

let file_name = entry.file_name().to_str().unwrap().to_owned();

if file_name.starts_with(".git") {
continue;
}

// We can skip any TestEZ test files since they aren't necessary for
// the plugin to run.
if file_name.ends_with(".spec.lua") || file_name.ends_with(".spec.luau") {
Expand Down

0 comments on commit 372a4a3

Please sign in to comment.