Skip to content

Commit b41a373

Browse files
updating wrc version and incirporating fix to allow WKTUI to start with WRC is already running (#133)
1 parent 701c2d8 commit b41a373

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

electron/app/js/wlRemoteConsoleUtils.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,10 @@ async function _getInstalledExecutablePath(rcHome) {
312312
};
313313

314314
if (osUtils.isMac()) {
315-
result['executable'] = path.join(rcHome, 'Contents', 'MacOS', 'WebLogic Remote Console');
315+
// On macOS, we use a different executable so that the WKTUI
316+
// and WRC applications can run at the same time...
317+
//
318+
result['executable'] = path.join(rcHome, 'Contents', 'MacOS', 'Embeddable Remote Console');
316319
} else if (osUtils.isWindows()) {
317320
result['executable'] = path.join(rcHome, 'WebLogic Remote Console.exe');
318321
} else {

webui/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)