Skip to content

Commit

Permalink
fix Dockerfile.$flavor detection
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Oct 27, 2023
1 parent 6b09a31 commit c1d2b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1265,7 +1265,7 @@ sub recipe2buildtype {
return 'collax' if $recipe eq 'build.collax';
return 'snapcraft' if $recipe eq 'snapcraft.yaml';
return 'appimage' if $recipe eq 'appimage.yml';
return 'docker' if $recipe eq 'Dockerfile';
return 'docker' if $recipe eq 'Dockerfile' || $recipe =~ /^Dockerfile\..*/;
return 'fissile' if $recipe eq 'fissile.yml';
return 'preinstallimage' if $recipe eq '_preinstallimage';
return 'simpleimage' if $recipe eq 'simpleimage';
Expand Down

0 comments on commit c1d2b2f

Please sign in to comment.