Skip to content

Commit

Permalink
Always pull before build
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernhaeuser committed Sep 3, 2024
1 parent a2226a3 commit 28b27df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11.1
20.17.0
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" ];
const args: string[] = [ "bud", "--pull" ];
if (arch) {
args.push("--arch");
args.push(arch);
Expand Down

0 comments on commit 28b27df

Please sign in to comment.