Skip to content

Commit

Permalink
Merge pull request lix-pm#195 from NQNStudios/fix-ndll-error
Browse files Browse the repository at this point in the history
Fix lix-pm#194 - erroneously trying to install ndlls as haxelibs
  • Loading branch information
kevinresol authored Aug 22, 2024
2 parents d89bb73 + acadad9 commit bda9c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lix/client/Libraries.hx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ using haxe.Json;
case Success(args): [for (a in args) a.val];
case Failure(_.errors[0] => e): new Error(e.code, e.message);
})
.next(args -> [for (i => a in args) if (a == '-lib') args[i + 1]]);
.next(args -> [for (i => a in args) if (a == '-lib' && Args.getNdll(args[i + 1]) == None) args[i + 1]]);
}


Expand Down

0 comments on commit bda9c33

Please sign in to comment.