Skip to content

Commit

Permalink
fix gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Dec 10, 2023
1 parent 61d51c4 commit b9a07a4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
/mingw64.zip
/mingw64-small.zip

jou_compiled
*.dll
*.exe

Expand Down
2 changes: 1 addition & 1 deletion src/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static void mkdir_exist_ok(const char *p)
static void write_gitinore(const char *p)
{
char *filename = malloc_sprintf("%s/.gitignore", p);
if (access(filename, F_OK)) {
if (access(filename, F_OK) == 0) {
free(filename);
return;
}
Expand Down

0 comments on commit b9a07a4

Please sign in to comment.