Skip to content

Commit

Permalink
JetBrains Toolkit updated about 8 hours ago.
Browse files Browse the repository at this point in the history
This added `idea.cmd` in addition to a Unix-y `idea` executable, which made our check for `idea` find the Unix one. Making it look for `idea.cmd` fixes this.
  • Loading branch information
tommyettinger committed Oct 18, 2024
1 parent c0a46a2 commit 4760d6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void populate(boolean fullscreen) {
addHandListener(ideaButton);
try {
if (UIUtils.isWindows) {
List<String> findIntellijExecutable = Arrays.asList("where.exe", "idea");
List<String> findIntellijExecutable = Arrays.asList("where.exe", "idea.cmd");

Process whereProcess = new ProcessBuilder(findIntellijExecutable).start();

Expand Down

0 comments on commit 4760d6c

Please sign in to comment.