scripts: Change here document delimiters

Fix the outstanding scripts using non standard shell here document delimiters.

This should have been caught by
https://github.com/kata-containers/tests/pull/3937, but there is a bug
in the checker which is fixed on
https://github.com/kata-containers/tests/pull/4569.

Fixes: #3864.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt
2022-03-10 09:23:37 +00:00
parent 5a7fd943c1
commit 5d6d39be48
18 changed files with 60 additions and 60 deletions

View File

@@ -50,7 +50,7 @@ error() {
usage() {
return_code=${1:-0}
cat <<EOT
cat <<EOF
This script is used as part of the ${project} release process.
It is used to create a tarball with static binaries.
@@ -74,7 +74,7 @@ options:
rootfs-image
rootfs-initrd
shim-v2
EOT
EOF
exit "${return_code}"
}