mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import { CommandModule } from 'yargs';
|
|
export const updateCommand: CommandModule = {
|
|
command: 'update',
|
|
describe: 'Update and restart qinglong',
|
|
builder: (yargs) => {
|
|
return yargs.option('repositority', {
|
|
type: 'string',
|
|
alias: 'r',
|
|
describe: `Specify the release warehouse address of the package`,
|
|
});
|
|
},
|
|
handler: async (argv) => {},
|
|
};
|