add missing confirm for apt ruby install

This commit is contained in:
David Hiendl 2024-01-19 14:31:22 +01:00
parent f877ba8d15
commit f95c0567d8

View File

@ -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);