Skip to content

Commit

Permalink
Fixing attachment issue on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
FlUxIuS committed Jul 17, 2024
1 parent faf95e3 commit 1d7e7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/rfswift/rfutils/hostcli.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func AttachUSBDevice(busID string) error {
* in(1): bus ID string to attach
* out: error
*/
cmd := exec.Command("usbipd.exe", "attach", "-a", "--wsl", "--busid", busID)
cmd := exec.Command("usbipd.exe", "attach", "--wsl", "--busid", busID)
if err := cmd.Run(); err != nil {
return fmt.Errorf("failed to attach device %s: %w", busID, err)
}
Expand Down

0 comments on commit 1d7e7e0

Please sign in to comment.