Skip to content

Commit

Permalink
fix: 🐛 Wireless adb does not support Spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed May 4, 2024
1 parent 5d102f3 commit 1f27597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/exposes/adbkit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ appStore.onDidChange('common.adbPath', async (value, oldValue) => {

const shell = async (command) => {
const execPath = appStore.get('common.adbPath') || adbPath
return exec(`${execPath} ${command}`, {
return exec(`"${execPath}" ${command}`, {
env: { ...process.env },
shell: true,
})
Expand Down

0 comments on commit 1f27597

Please sign in to comment.