From 1e1a32bc5a93e8b6e9197b5916ece23652dd1a46 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 17 Nov 2025 13:27:14 +0100 Subject: [PATCH] Add command to update project commit hash --- 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;