Skip to content

Commit

Permalink
Bug fix: Install devtron & Ember Inspector in dev (#1698)
Browse files Browse the repository at this point in the history
In the process of removing `electron-is-dev` the way that we determine
if we're in development environments changed, and as a result we need to
invert the conditional.

Fixes: #1697
  • Loading branch information
jagthedrummer authored Apr 17, 2024
1 parent c0a6c95 commit e2e1c29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/files/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ app.on('window-all-closed', () => {
});

app.on('ready', async () => {
if (app.isPackaged) {
if (!app.isPackaged) {
try {
require('devtron').install();
} catch (err) {
Expand Down

0 comments on commit e2e1c29

Please sign in to comment.