File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,10 @@ before_deploy:
2424 - go get github.com/mitchellh/gox
2525 - mkdir releases
2626 - gox -osarch="!netbsd/arm !openbsd/386 !openbsd/amd64 !netbsd/386 !netbsd/amd64" -output="releases/{{.Dir}}_`git describe --tags --abbrev=0`_{{.OS}}_{{.Arch}}/{{.Dir}}"
27- - find releases -maxdepth 1 -mindepth 1 -type d -exec tar -cvzf {}.tar.gz -C {} docker-machine-driver-hetzner \;
27+ # Below tar command will log an error because either ...-hetzner or
28+ # ...-hetzner.exe are missing. The process continues, though and the
29+ # created tarballs are fine.
30+ - find releases -maxdepth 1 -mindepth 1 -type d -exec tar -cvzf {}.tar.gz -C {} docker-machine-driver-hetzner docker-machine-driver-hetzner.exe \;
2831
2932deploy :
3033 # See https://docs.travis-ci.com/user/deployment/releases/
You can’t perform that action at this time.
0 commit comments