parent
322aeebd45
commit
262bcedbd2
2 changed files with 26 additions and 3 deletions
apps/update/src
|
@ -1,6 +1,6 @@
|
|||
import { parseArgs } from './lib.ts';
|
||||
import { updateFirefoxAddons } from '././firefox.ts';
|
||||
import { updateDocker, updateVuetorrent } from './misc.ts';
|
||||
import { updateDocker, updateFlakeInputs, updateVuetorrent } from './misc.ts';
|
||||
|
||||
|
||||
const args = parseArgs();
|
||||
|
@ -9,6 +9,10 @@ if (args['d'] || args['docker']) {
|
|||
console.log(updateDocker());
|
||||
}
|
||||
|
||||
if (args['i'] || args['inputs']) {
|
||||
console.log(updateFlakeInputs());
|
||||
}
|
||||
|
||||
if (args['f'] || args['firefox']) {
|
||||
console.log(updateFirefoxAddons());
|
||||
}
|
||||
|
@ -18,7 +22,8 @@ if (args['v'] || args['vuetorrent']) {
|
|||
}
|
||||
|
||||
if (args['a'] || args['all']) {
|
||||
console.log(updateVuetorrent());
|
||||
console.log(updateFirefoxAddons());
|
||||
console.log(updateDocker());
|
||||
console.log(updateFlakeInputs());
|
||||
console.log(updateFirefoxAddons());
|
||||
console.log(updateVuetorrent());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue