We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ad5bf commit 7c32040Copy full SHA for 7c32040
appveyor.yml
@@ -11,6 +11,15 @@ install:
11
- cinst golang --version 1.8.0 -y
12
- cinst InnoSetup -y
13
- refreshenv
14
+ - ps: |
15
+ echo "Go directories in machine PATH environment:"
16
+ [environment]::GetEnvironmentVariable("PATH","Machine").split(";") | Select-String -Pattern "\\go\\"
17
+ echo "Go directories in user PATH environment:"
18
+ [environment]::GetEnvironmentVariable("PATH","User").split(";") | Select-String -Pattern "\\go\\"
19
+ echo "Go directories in process PATH environment:"
20
+ [environment]::GetEnvironmentVariable("PATH","Process").split(";") | Select-String -Pattern "\\go\\"
21
+ echo "Go version information:"
22
+ go version
23
24
build_script:
25
- bash --login -c 'GOARCH=386 script/bootstrap'
0 commit comments