Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix win tempdir 2
Browse files Browse the repository at this point in the history
jaromil committed Dec 26, 2024
1 parent 8ec50a2 commit 1feb8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cjit.c
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ static bool cjit_mkdtemp(CJITState *cjit) {
// The path exists but is not a directory
return(false);
}
if(!cjit->fresh) {
if(cjit->fresh) {
// Create the temporary directory
if (CreateDirectory(tempDir, NULL) == 0) {
_err("Failed to create temporary dir: %s",tempDir);

0 comments on commit 1feb8b0

Please sign in to comment.