From 89432213ef0fab2eebd8f8d4ecf678f2b5b7ecda Mon Sep 17 00:00:00 2001 From: Helen Koike Date: Thu, 16 Mar 2023 10:10:51 -0300 Subject: [PATCH] android/ci: Fix call to adb Call to adb should be made with ADB variable, following the pattern from the script. Signed-off-by: Helen Koike Part-of: --- .gitlab-ci/cuttlefish-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/cuttlefish-runner.sh b/.gitlab-ci/cuttlefish-runner.sh index 2424f6d42ea..75553f8fc0c 100755 --- a/.gitlab-ci/cuttlefish-runner.sh +++ b/.gitlab-ci/cuttlefish-runner.sh @@ -38,7 +38,7 @@ $ADB shell mkdir -p "$OV_TMPFS/vendor-upper" $ADB shell mkdir -p "$OV_TMPFS/vendor-work" opts="lowerdir=/vendor,upperdir=$OV_TMPFS/vendor-upper,workdir=$OV_TMPFS/vendor-work" -adb shell mount -t overlay -o "$opts" none /vendor +$ADB shell mount -t overlay -o "$opts" none /vendor $ADB shell setenforce 0