From 86102e383f232814f35cb60a5019fc490c6e3640 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 2 Jun 2024 21:04:44 +0200 Subject: [PATCH] Fixed regex to allow `?` chars --- app/MindWork AI Studio/build.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/build.nu b/app/MindWork AI Studio/build.nu index 17255bc..ae03587 100755 --- a/app/MindWork AI Studio/build.nu +++ b/app/MindWork AI Studio/build.nu @@ -371,7 +371,7 @@ def update_changelog []: nothing -> nothing { # Next, update the Changelog.Logs.cs file: let changelog_logs_source_file = open --raw "Components/Blocks/Changelog.Logs.cs" - let result = $changelog_logs_source_file | str replace --regex '(?ms)LOGS =\s+\[[\w\s".,-:()]+\];' $code + let result = $changelog_logs_source_file | str replace --regex '(?ms)LOGS =\s+\[[\w\s".,-:()?]+\];' $code # Save the updated file: $result | save --raw --force "Components/Blocks/Changelog.Logs.cs"