mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
config generate: Fix device type compatibility check
Change-type: patch
This commit is contained in:
parent
260a30532a
commit
116ab1fbc1
@ -130,7 +130,7 @@ export default class ConfigGenerateCmd extends Command {
|
|||||||
|
|
||||||
await this.validateOptions(options);
|
await this.validateOptions(options);
|
||||||
|
|
||||||
let deviceType = options.deviceType;
|
let resourceDeviceType: string;
|
||||||
// Get device | application
|
// Get device | application
|
||||||
let resource;
|
let resource;
|
||||||
if (options.device != null) {
|
if (options.device != null) {
|
||||||
@ -140,24 +140,26 @@ export default class ConfigGenerateCmd extends Command {
|
|||||||
is_of__device_type: { $select: 'slug' },
|
is_of__device_type: { $select: 'slug' },
|
||||||
},
|
},
|
||||||
})) as DeviceWithDeviceType & { belongs_to__application: PineDeferred };
|
})) as DeviceWithDeviceType & { belongs_to__application: PineDeferred };
|
||||||
deviceType = deviceType || resource.is_of__device_type[0].slug;
|
resourceDeviceType = resource.is_of__device_type[0].slug;
|
||||||
} else {
|
} else {
|
||||||
resource = (await balena.models.application.get(options.application!, {
|
resource = (await balena.models.application.get(options.application!, {
|
||||||
$expand: {
|
$expand: {
|
||||||
is_for__device_type: { $select: 'slug' },
|
is_for__device_type: { $select: 'slug' },
|
||||||
},
|
},
|
||||||
})) as ApplicationWithDeviceType;
|
})) as ApplicationWithDeviceType;
|
||||||
deviceType = deviceType || resource.is_for__device_type[0].slug;
|
resourceDeviceType = resource.is_for__device_type[0].slug;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const deviceType = options.deviceType || resourceDeviceType;
|
||||||
|
|
||||||
const deviceManifest = await balena.models.device.getManifestBySlug(
|
const deviceManifest = await balena.models.device.getManifestBySlug(
|
||||||
deviceType!,
|
deviceType,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Check compatibility if application and deviceType provided
|
// Check compatibility if application and deviceType provided
|
||||||
if (options.application && options.deviceType) {
|
if (options.application && options.deviceType) {
|
||||||
const appDeviceManifest = await balena.models.device.getManifestBySlug(
|
const appDeviceManifest = await balena.models.device.getManifestBySlug(
|
||||||
deviceType!,
|
resourceDeviceType,
|
||||||
);
|
);
|
||||||
|
|
||||||
const helpers = await import('../../utils/helpers');
|
const helpers = await import('../../utils/helpers');
|
||||||
|
Loading…
Reference in New Issue
Block a user