Skip to content

Commit 4d9c9f1

Browse files
committed
Fix net use message
1 parent 010c385 commit 4d9c9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/windows/windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func toUncPath(fp string) (string, error) {
115115

116116
out, err := cmd.Command("net use").Output()
117117
if err != nil {
118-
return "", fmt.Errorf("failed to execute ls command: %s", err)
118+
return "", fmt.Errorf("failed to execute net use command: %s", err)
119119
}
120120

121121
drives, err := parseNetUseOutput(string(out))

0 commit comments

Comments
 (0)