mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 14:13:58 +08:00
3c474b9e2a
I'm the worst, shame, shame, shame has been brough unto my family Docker-DCO-1.1-Signed-off-by: Jessie Frazelle <jess@docker.com> (github: jfrazelle)
14 lines
342 B
Bash
Executable File
14 lines
342 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# This script runs all validations
|
|
|
|
validate() {
|
|
sed -i 's!docker/docker!docker/libcontainer!' /go/src/github.com/docker/docker/hack/make/.validate
|
|
bash /go/src/github.com/docker/docker/hack/make/validate-dco
|
|
bash /go/src/github.com/docker/docker/hack/make/validate-gofmt
|
|
}
|
|
|
|
# run validations
|
|
validate
|