From f95c0567d8210dbb28d0f549ea6ee3c84366e449 Mon Sep 17 00:00:00 2001 From: David Hiendl Date: Fri, 19 Jan 2024 14:31:22 +0100 Subject: [PATCH] add missing confirm for apt ruby install --- src/lib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.js b/src/lib.js index 1802d2d..08195c2 100644 --- a/src/lib.js +++ b/src/lib.js @@ -7,7 +7,7 @@ export function prepareFpmArgs() { } export async function installFpmViaRuby(debug) { - const aptCmd = 'sudo apt-get install ruby'; + const aptCmd = 'sudo apt-get install -y ruby'; const gemCmd = 'sudo gem install fpm'; if (debug) { console.log('ruby install command: ', rubyCmd);