Skip to content

Commit

Permalink
Merge pull request #1133 from wakatime/bugfix/net-use-message
Browse files Browse the repository at this point in the history
Fix net use message
  • Loading branch information
gandarez authored Nov 21, 2024
2 parents 010c385 + 4d9c9f1 commit 7d914bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/windows/windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func toUncPath(fp string) (string, error) {

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

drives, err := parseNetUseOutput(string(out))
Expand Down

0 comments on commit 7d914bc

Please sign in to comment.