Skip to content

Commit fa3e534

Browse files
committed
test: import recipes into bitbake-setup openembedded-core layer
1 parent 11bdcac commit fa3e534

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integration-tests/src/utils/bitbake.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ export async function awaitBitbakeParsingResult (): Promise<void> {
2323

2424
/// Copy a recipe into poky
2525
export async function importRecipe (recipePath: string, pokyPath: string): Promise<void> {
26-
const pokyDestinationPath = path.resolve(pokyPath, 'meta/recipes-core/base-files', path.basename(recipePath))
26+
const pokyDestinationPath = path.resolve(pokyPath, 'layers/openembedded-core/meta/recipes-core/base-files', path.basename(recipePath))
2727
await vscode.workspace.fs.copy(vscode.Uri.file(recipePath), vscode.Uri.file(pokyDestinationPath))
2828
}
2929

3030
export async function removeRecipe (recipePath: string, pokyPath: string): Promise<void> {
31-
const pokyDestinationPath = path.resolve(pokyPath, 'meta/recipes-core/base-files', path.basename(recipePath))
31+
const pokyDestinationPath = path.resolve(pokyPath, 'layers/openembedded-core/meta/recipes-core/base-files', path.basename(recipePath))
3232
await vscode.workspace.fs.delete(vscode.Uri.file(pokyDestinationPath))
3333
}

0 commit comments

Comments
 (0)