We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c112807 + e429957 commit 06e7c03Copy full SHA for 06e7c03
src/scanner/images/index.ts
@@ -12,6 +12,10 @@ export async function pullImages(images: IPullableImage[]): Promise<IPullableIma
12
13
for (const image of images) {
14
const {imageName, fileSystemPath} = image;
15
+ if (!fileSystemPath) {
16
+ continue;
17
+ }
18
+
19
try {
20
await skopeoCopy(imageName, fileSystemPath);
21
pulledImages.push(image);
0 commit comments