File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class LayerCache {
52
52
}
53
53
54
54
private async saveImageAsUnpacked ( ) {
55
- await this . exec ( 'mkdir -p' , [ this . getSavedImageTarDir ( ) ] )
55
+ await this . exec ( 'mkdir -p' , [ this . getSavedImageTarDir ( ) ] , { silent : true } )
56
56
await this . exec ( `sh -c` , [ `docker save '${ ( await this . makeRepotagsDockerSaveArgReady ( this . ids ) ) . join ( `' '` ) } ' | tar xf - -C ${ this . getSavedImageTarDir ( ) } ` ] )
57
57
}
58
58
@@ -64,7 +64,7 @@ class LayerCache {
64
64
}
65
65
66
66
private async getAllImageIdsFrom ( repotag : string ) : Promise < string [ ] > {
67
- const { stdoutStr : rawHistoryIds } = await this . exec ( `docker history -q` , [ repotag ] )
67
+ const { stdoutStr : rawHistoryIds } = await this . exec ( `docker history -q` , [ repotag ] , { silent : true } )
68
68
const historyIds = rawHistoryIds . split ( `\n` ) . filter ( id => id !== `<missing>` && id !== `` )
69
69
return historyIds
70
70
}
You can’t perform that action at this time.
0 commit comments