From 81909fddd54bd26440d1310ed37623c230944c5a Mon Sep 17 00:00:00 2001 From: Sergey Dolin Date: Tue, 29 Dec 2020 12:04:25 +0500 Subject: [PATCH] Replace dpkg with apt (#2334) dpkg can not get a lock, use apt mock script instead --- images/linux/scripts/installers/aws.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/linux/scripts/installers/aws.sh b/images/linux/scripts/installers/aws.sh index f185f02f..99e8c0d8 100644 --- a/images/linux/scripts/installers/aws.sh +++ b/images/linux/scripts/installers/aws.sh @@ -25,6 +25,6 @@ if isUbuntu16 || isUbuntu18 ; then fi curl "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/ubuntu_64bit/session-manager-plugin.deb" -o "session-manager-plugin.deb" -sudo dpkg -i session-manager-plugin.deb +sudo apt install ./session-manager-plugin.deb -invoke_tests "CLI.Tools" "AWS" \ No newline at end of file +invoke_tests "CLI.Tools" "AWS"