Skip to content

Commit

Permalink
fix: windows compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwa committed Sep 9, 2022
1 parent 1dc408c commit 366126d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function ensureArgs(
if (!isSystemAdbAvailable()) {
let cmd = command.split(' ');
const binFile = getAdbReactivePath(cwd as string);
cmd[0] = isSwapn ? binFile : `"${binFile}`;
cmd[0] = binFile;
command = cmd.join(' ');
}
const res: [string, ExecSyncOptionsWithStringEncoding] = [
Expand Down

0 comments on commit 366126d

Please sign in to comment.