You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cvm/src/packages/exec-lvm/modifiers/unattended-flags.js

9 lines
223 B
JavaScript

"use strict";
module.exports = function unattendedFlags(command) {
/* This will answer "no" to any safety prompts, cancelling the operation if safety issues arise. */
return command.withFlags({
q: [true, true]
});
};