-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: print shell commands safely #5279
Labels
GoCommand
cmd/go
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
Comments
Issue #5274 has been merged into this issue. |
To sumup from https://golang.org/issue/5274. Possible unix to windows command translation candidates: "cp" -> "copy /y" "mkdir -p" -> "mkdir" "rm -f" -> "del /f /q" for files and "rmdir /s /q" for directories "rm -r" -> same as before Alex |
Issue #5274 has been merged into this issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
GoCommand
cmd/go
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
The text was updated successfully, but these errors were encountered: