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 2b45de9515
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -30201,7 +30201,7 @@ function prepareFpmArgs() {
}
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);

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