From 45ac3eee2baaadecc7a6dc8b38ea7d7e9fd6e1db Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 17 Nov 2025 13:28:00 +0100 Subject: [PATCH] Added command to update project commit hash (#575) --- app/Build/Commands/UpdateMetadataCommands.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/Build/Commands/UpdateMetadataCommands.cs b/app/Build/Commands/UpdateMetadataCommands.cs index b9b01357..06910b45 100644 --- a/app/Build/Commands/UpdateMetadataCommands.cs +++ b/app/Build/Commands/UpdateMetadataCommands.cs @@ -336,8 +336,9 @@ public sealed partial class UpdateMetadataCommands await File.WriteAllLinesAsync(pathMetadata, lines, Environment.UTF8_NO_BOM); Console.WriteLine(" done."); } - - private async Task UpdateProjectCommitHash() + + [Command("update-project-hash", Description = "Update the project commit hash")] + public async Task UpdateProjectCommitHash() { const int COMMIT_HASH_INDEX = 8;