Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ModularPipelines.Podman/AssemblyInfo.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
using System.Reflection;

[assembly: AssemblyMetadata("ModularPipelines.OptionsGenerator.Tool", "podman")]
[assembly: AssemblyMetadata("ModularPipelines.OptionsGenerator.GeneratedAt", "2026-05-10T03:18:37.9177480Z")]
[assembly: AssemblyMetadata("ModularPipelines.OptionsGenerator.GeneratedAt", "2026-05-17T03:19:02.5899177Z")]
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public record PodmanImageListOptions : PodmanOptions
public bool? Quiet { get; set; }

/// <summary>
/// Sort by size, tag, created, id, repository (default "created")
/// Sort by created, id, repository, size, tag (default "created")
/// </summary>
[CliOption("--sort", Format = OptionFormat.EqualsSeparated)]
public string? Sort { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public record PodmanImagesOptions : PodmanOptions
public bool? Quiet { get; set; }

/// <summary>
/// Sort by created, id, repository, size, tag (default "created")
/// Sort by tag, created, id, repository, size (default "created")
/// </summary>
[CliOption("--sort", Format = OptionFormat.EqualsSeparated)]
public string? Sort { get; set; }
Expand Down
Loading