Allow disabling of patch checks

This commit is contained in:
trickypr 2022-04-12 15:49:22 +10:00
parent c69a0300ed
commit 0766066cd7
2 changed files with 10 additions and 16 deletions

View file

@ -16,15 +16,16 @@ export const commands: Cmd[] = [
description:
'Build the melon app. Specify the OS param for cross-platform builds.',
options: [
{
arg: '--a, --arch <architecture>',
description: 'Specify architecture for build',
},
{
arg: '--u, --ui',
description:
'Only builds the ui. Faster but not as powerful as a regular build.',
},
{
arg: '--skip-patch-check',
description:
"Doesn't check to see if all of the patches have been applied",
},
],
requestController: async () => (await import('./commands/build')).build,
},