mirror of
https://github.com/actions/go-versions
synced 2024-11-09 15:12:38 +00:00
Fix coments
This commit is contained in:
parent
333033608c
commit
19f60e7cf5
1 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ Describe "Go" {
|
|||
"go run simple.go" | Should -ReturnZeroExitCode
|
||||
"go build simple.go" | Should -ReturnZeroExitCode
|
||||
$compiledPackageName = "simple"
|
||||
if ($IsWindows) { $compiledPackageName = "simple.exe" }
|
||||
if ($IsWindows) { $compiledPackageName += ".exe" }
|
||||
(Resolve-Path "./$compiledPackageName").Path | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ Describe "Go" {
|
|||
"go run maps.go" | Should -ReturnZeroExitCode
|
||||
"go build maps.go" | Should -ReturnZeroExitCode
|
||||
$compiledPackageName = "maps"
|
||||
if ($IsWindows) { $compiledPackageName = "maps.exe" }
|
||||
if ($IsWindows) { $compiledPackageName += ".exe" }
|
||||
(Resolve-Path "./$compiledPackageName").Path | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ Describe "Go" {
|
|||
"go run methods.go" | Should -ReturnZeroExitCode
|
||||
"go build methods.go" | Should -ReturnZeroExitCode
|
||||
$compiledPackageName = "methods"
|
||||
if ($IsWindows) { $compiledPackageName = "methods.exe" }
|
||||
if ($IsWindows) { $compiledPackageName += ".exe" }
|
||||
(Resolve-Path "./$compiledPackageName").Path | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue