Skip to content

Commit

Permalink
Use new flag to always pull images
Browse files Browse the repository at this point in the history
  • Loading branch information
der-eismann committed Sep 17, 2024
1 parent 28b27df commit e3004ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/buildah.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class BuildahCli implements Buildah {
arch?: string,
platform?: string
): Promise<CommandResult> {
const args: string[] = [ "bud", "--pull" ];
const args: string[] = [ "bud", "--pull=always" ];
if (arch) {
args.push("--arch");
args.push(arch);
Expand Down

0 comments on commit e3004ee

Please sign in to comment.