Skip to content

Commit

Permalink
FLS: license assessment cli interaction is broken [2.5.0 release]
Browse files Browse the repository at this point in the history
use 13 for WinOS and 10 for all the rest
  • Loading branch information
eparovyshnaya committed Nov 6, 2022
1 parent 5d2f8b5 commit 6c17c3f
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,10 @@ public void swear(Throwable thro) {
}

private int stop() {
if (Platform.getOS().equals(Platform.OS_LINUX)) {
return 10;
} else if (Platform.getOS().equals(Platform.OS_MACOSX)) {
return 10;
} else {
if (Platform.getOS().equals(Platform.OS_WIN32)) {
return 13;
}
return 10;
}

}

0 comments on commit 6c17c3f

Please sign in to comment.