parent
970a380805
commit
60bc645ae0
5 changed files with 73 additions and 33 deletions
apps/update/src
|
@ -1,5 +1,6 @@
|
|||
import { parseArgs } from './lib.ts';
|
||||
import { updateFirefoxAddons } from '././firefox.ts';
|
||||
import { updateDocker } from './misc.ts';
|
||||
|
||||
|
||||
const args = parseArgs();
|
||||
|
@ -7,3 +8,12 @@ const args = parseArgs();
|
|||
if (args['f'] || args['firefox']) {
|
||||
console.log(updateFirefoxAddons());
|
||||
}
|
||||
|
||||
if (args['d'] || args['docker']) {
|
||||
console.log(updateDocker());
|
||||
}
|
||||
|
||||
if (args['a'] || args['all']) {
|
||||
console.log(updateFirefoxAddons());
|
||||
console.log(updateDocker());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue