We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e7fff5 commit 5dbef67Copy full SHA for 5dbef67
1 file changed
LidarrAPI/Release/AppVeyor/AppVeyorReleaseSource.cs
@@ -123,7 +123,8 @@ protected override async Task DoFetchReleasesAsync()
123
// Detect target operating system.
124
OperatingSystem operatingSystem;
125
126
- if (artifact.FileName.Contains("windows."))
+ // NB: Added this because our "artifatcs incliude a Lidarr...windows.exe, which really shouldn't be added
127
+ if (artifact.FileName.Contains("windows.") && artifact.FileName.ToLower().Contains(".zip"))
128
{
129
operatingSystem = OperatingSystem.Windows;
130
}
0 commit comments