Update terminal_windows.go

This commit is contained in:
Henrique Dias 2017-05-12 22:28:26 +01:00 committed by GitHub
parent 3454d74a4c
commit 532c891a89
1 changed files with 3 additions and 2 deletions

View File

@ -42,6 +42,7 @@ func getVersion() (float64, error) {
return -1, err
}
// The output should be like "Microsoft Windows [Version XX.X.XXXXXX]"
version := strings.Replace(stdout.String(), "\n", "", -1)
version = strings.Replace(version, "\r\n", "", -1)
@ -57,7 +58,7 @@ func getVersion() (float64, error) {
func init() {
ver, err := getVersion()
if err != nil {
panic(err)
return
}
// Activate Virtual Processing for Windows CMD