mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-04-05 02:09:08 +00:00
os build-config: Deprecate the --device-type parameter
Change-type: patch
This commit is contained in:
parent
06133c789e
commit
ae54506fe6
@ -38,6 +38,7 @@ export default class OsBuildConfigCmd extends Command {
|
||||
description: 'os image',
|
||||
required: true,
|
||||
}),
|
||||
// TODO: Drop this arg on the next major
|
||||
'device-type': Args.string({
|
||||
description: 'device type',
|
||||
required: true,
|
||||
@ -63,6 +64,12 @@ export default class OsBuildConfigCmd extends Command {
|
||||
|
||||
const { writeFile } = (await import('fs')).promises;
|
||||
|
||||
// the "device-type" arg will be removed on the next major - warn user
|
||||
if (params['device-type'] != null) {
|
||||
const { deviceTypeArgDeprecation } = await import('../../utils/messages');
|
||||
console.log(deviceTypeArgDeprecation('device-type'));
|
||||
}
|
||||
|
||||
const config = await this.buildConfig(
|
||||
params.image,
|
||||
params['device-type'],
|
||||
@ -74,7 +81,12 @@ export default class OsBuildConfigCmd extends Command {
|
||||
console.info(`Config file "${options.output}" created successfully.`);
|
||||
}
|
||||
|
||||
async buildConfig(image: string, deviceTypeSlug: string, advanced: boolean) {
|
||||
async buildConfig(
|
||||
image: string,
|
||||
// TODO: Drop this parameter on the next major
|
||||
deviceTypeSlug: string | undefined,
|
||||
advanced: boolean,
|
||||
) {
|
||||
advanced = advanced || false;
|
||||
|
||||
const { getManifest } = await import('../../utils/helpers');
|
||||
|
Loading…
x
Reference in New Issue
Block a user