Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKir Kolyshkin <kolyshkin@gmail.com>2022-04-13 03:10:27 +0300
committerAndrei Vagin <avagin@gmail.com>2022-08-31 01:42:25 +0300
commit72d27e9818638b3f8762a713ac2ab840afcb152f (patch)
treec1e701cb42efeb2c3c92cf29d3d3f770d3c6e48f
parent0fce00fa10f6b81ac5c7c88972b7635e853a6211 (diff)
scripts/ci: rm shellcheck disable annotations
Those are no longer needed with shellcheck 0.8.0. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
-rwxr-xr-xscripts/ci/docker-test.sh2
-rwxr-xr-xscripts/ci/podman-test.sh1
2 files changed, 0 insertions, 3 deletions
diff --git a/scripts/ci/docker-test.sh b/scripts/ci/docker-test.sh
index eacfe136e..beb7da6da 100755
--- a/scripts/ci/docker-test.sh
+++ b/scripts/ci/docker-test.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-# shellcheck disable=SC2015
-
set -x -e -o pipefail
./apt-install \
diff --git a/scripts/ci/podman-test.sh b/scripts/ci/podman-test.sh
index 973d2d722..e08fdf3bc 100755
--- a/scripts/ci/podman-test.sh
+++ b/scripts/ci/podman-test.sh
@@ -27,7 +27,6 @@ rm -rf "${tmp_dir}"
podman info
-# shellcheck disable=SC2016
podman run --name cr -d docker.io/library/alpine /bin/sh -c 'i=0; while true; do echo $i; i=$(expr $i + 1); sleep 1; done'
sleep 1