diff --git a/Dockerfile b/Dockerfile index 2ba1ba128..d6680cc2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG GO_VERSION=1.17 ARG BATS_VERSION=v1.3.0 -ARG LIBSECCOMP_VERSION=2.5.2 +ARG LIBSECCOMP_VERSION=2.5.3 FROM golang:${GO_VERSION}-bullseye ARG DEBIAN_FRONTEND=noninteractive diff --git a/script/release_build.sh b/script/release_build.sh index 2d3fe93b6..252516158 100755 --- a/script/release_build.sh +++ b/script/release_build.sh @@ -19,7 +19,7 @@ set -e ## ---> # Project-specific options and functions. In *theory* you shouldn't need to # touch anything else in this script in order to use this elsewhere. -: "${LIBSECCOMP_VERSION:=2.5.2}" +: "${LIBSECCOMP_VERSION:=2.5.3}" project="runc" root="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")" @@ -100,7 +100,7 @@ function build_project() { # Print usage information. function usage() { - echo "usage: release_build.sh [-a ]... [-c ] [-h ]" >&2 + echo "usage: release_build.sh [-a ]... [-c ] [-H ]" >&2 echo " [-r ] [-v ]" >&2 exit 1 } diff --git a/script/release_sign.sh b/script/release_sign.sh index 5b2e6f365..8cc224ac6 100755 --- a/script/release_sign.sh +++ b/script/release_sign.sh @@ -21,7 +21,8 @@ root="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")" # Print usage information. function usage() { - echo "usage: release_sign.sh [-S ] [-r ]" >&2 + echo "usage: release_sign.sh [-S ] [-H ]" >&2 + echo " [-r ] [-v ]" >&2 exit 1 } diff --git a/script/seccomp.sh b/script/seccomp.sh index 488ef5b99..2c2ea84e0 100755 --- a/script/seccomp.sh +++ b/script/seccomp.sh @@ -50,7 +50,7 @@ function build_libseccomp() { mv "$tar"{,.asc} "$dest"/src } -if [ $# -lt 4 ]; then +if [ $# -lt 2 ]; then echo "Usage: seccomp.sh [ ...]" >&2 exit 1 fi