Merge pull request #1 from digitalocean/master
Merging from upstream Acked-by: Simarpreet Singh <simar@opendns.com>
This commit is contained in:
commit
53bb4bc9da
@ -8,6 +8,6 @@ before_script:
|
||||
script:
|
||||
- ./scripts/licensecheck.sh
|
||||
- go build ./...
|
||||
- ./scripts/golint.sh
|
||||
- golint -set_exit_status ./...
|
||||
- go vet ./...
|
||||
- go test -v ./...
|
||||
|
1
AUTHORS
1
AUTHORS
@ -12,3 +12,4 @@ Contributors
|
||||
Justin Kim <justin@digitalocean.com>
|
||||
Ricky Medina <rm@do.co>
|
||||
Charlie Drage <charlie@charliedrage.com>
|
||||
Michael Koppmann <me@mkoppmann.at>
|
||||
|
@ -25,3 +25,6 @@ under the "Contributors" section using the format:
|
||||
`First Last <email@example.com>`.
|
||||
|
||||
Finally, submit a pull request for review!
|
||||
|
||||
Questions? Feel free to join us in [`#go-qemu` on freenode](https://webchat.freenode.net/)
|
||||
if you'd like to discuss the project.
|
||||
|
@ -12,6 +12,9 @@ This should be considered a work in progress. Most functionaly provided by the C
|
||||
bindings have not yet made their way into this library. [Pull requests are welcome](https://github.com/digitalocean/go-libvirt/blob/master/CONTRIBUTING.md)!
|
||||
The definition of the RPC protocol is in the libvirt source tree under [src/rpc/virnetprotocol.x](https://github.com/libvirt/libvirt/blob/master/src/rpc/virnetprotocol.x).
|
||||
|
||||
Feel free to join us in [`#go-qemu` on freenode](https://webchat.freenode.net/)
|
||||
if you'd like to discuss the project.
|
||||
|
||||
Warning
|
||||
-------
|
||||
|
||||
|
@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Verify that all files are correctly golint'd.
|
||||
EXIT=0
|
||||
GOLINT=$(golint ./...)
|
||||
|
||||
if [[ ! -z $GOLINT ]]; then
|
||||
echo $GOLINT
|
||||
EXIT=1
|
||||
fi
|
||||
|
||||
exit $EXIT
|
Loading…
Reference in New Issue
Block a user