Skip to content

Commit d19a49e

Browse files
committed
Fix crash in on-window-detected
#1588
1 parent 3b55258 commit d19a49e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/AppBundle/focus.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,6 @@ extension Workspace {
184184
environment["AEROSPACE_FOCUSED_WORKSPACE"] = newWorkspace
185185
environment["AEROSPACE_PREV_WORKSPACE"] = oldWorkspace
186186
process.environment = environment
187-
Result { try process.run() }.getOrDie() // todo It's not perfect to fail here
187+
_ = Result { try process.run() }
188188
}
189189
}

0 commit comments

Comments
 (0)