add missing confirm for apt ruby install
This commit is contained in:
parent
f877ba8d15
commit
2b45de9515
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user