Skip to content

Commit

Permalink
Filter out unity crash handler executables
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Apr 30, 2018
1 parent bd81bcd commit b497fca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions appsrc/tasks/launch/poker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ function computeScore (execs: IScoredExecutable[]): IScoredExecutable[] {
// launcher scripts > jar, in case of bundled JRE, cf. https://github.com/itchio/itch/issues/819
score -= 5;
}
if (/unitycrashhandler.*\.exe$/i.test(name)) {
score = -10000; // ffs
}
exe.score = score;

if (score > 0) {
Expand Down

0 comments on commit b497fca

Please sign in to comment.