Skip to content

Commit ab0ea0f

Browse files
committed
fix test
1 parent 1fa8ca1 commit ab0ea0f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/build-macos-arm-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
<key>CFBundlePackageType</key>
157157
<string>APPL</string>
158158
<key>CFBundleSignature</key>
159-
<string>????</string>
159+
<string>CLNR</string>
160160
<key>CFBundleIconFile</key>
161161
<string>Cleanuparr</string>
162162
<key>NSHighResolutionCapable</key>

.github/workflows/build-macos-intel-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
<key>CFBundlePackageType</key>
157157
<string>APPL</string>
158158
<key>CFBundleSignature</key>
159-
<string>????</string>
159+
<string>CLNR</string>
160160
<key>CFBundleIconFile</key>
161161
<string>Cleanuparr</string>
162162
<key>NSHighResolutionCapable</key>

code/backend/Cleanuparr.Shared/Helpers/BasePathValidator.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ public static ValidationResult Validate(string? basePath)
2626
// Trim whitespace
2727
basePath = basePath.Trim();
2828

29+
if (basePath == "/")
30+
{
31+
return ValidationResult.Success();
32+
}
33+
2934
// Check length
3035
if (basePath.Length > MaxLength)
3136
{

0 commit comments

Comments
 (0)