Skip to content

Commit 9169e20

Browse files
committed
rebase build fix
1 parent 193c352 commit 9169e20

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

appveyor.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ before_build:
2828
build_script:
2929
- cd c:\certcheck
3030
- go get gopkg.in/yaml.v2
31-
- go build -o ${env:FILENAME}
32-
- dir
31+
- go build
32+
- ps: |
33+
if (Test-Path .\certcheck.exe -PathType Any) { Rename-Item .\certcheck.exe -newName ${env:FILENAME} }
34+
if (Test-Path .\certcheck -PathType Any) { Rename-Item .\certcheck -newName ${env:FILENAME} }
3335
artifacts:
3436
- path: '.\certcheck_*'

0 commit comments

Comments
 (0)