Skip to content

Commit

Permalink
Merge branch 'main' into import-shared-memory
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyfettes authored Dec 11, 2024
2 parents 20ad350 + e38248a commit 4302d52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/moonbuild/src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ fn common(
// .gitignore
{
let gitignore = target_dir.join(".gitignore");
let content = "target/\n.mooncakes/\n";
let content = ["target/", ".mooncakes/", ".DS_Store"];
let content = content.join("\n") + "\n";
let mut file = std::fs::File::create(gitignore).unwrap();
file.write_all(content.as_bytes()).unwrap();
}
Expand Down

0 comments on commit 4302d52

Please sign in to comment.