2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 01:51:51 +00:00

ci: fix 'crit.sh: 3: source: not found'

Jenkins test runs are failing with:

 ./test/jenkins/run_ct ./test/jenkins/crit.sh
 ./test/jenkins/crit.sh: 3: source: not found

Switch to bash which has 'source'.

Signed-off-by: Adrian Reber <areber@redhat.com>
This commit is contained in:
Adrian Reber 2021-08-09 08:51:12 +00:00 committed by Andrei Vagin
parent e936a0f8ad
commit dd0e66149f
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
mount --make-rslave /

View File

@ -1,3 +1,3 @@
#!/bin/sh
#!/bin/bash
unshare --mount --pid --fork -- $(readlink -f `dirname $0`/_run_ct) "$@"