Browse Source
Merge pull request #16057 from abpframework/fix-leptonx-package-version-checker
pull/16058/head
maliming
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Version/PackageVersionCheckerService.cs
|
|
|
@ -61,7 +61,7 @@ public class PackageVersionCheckerService : ITransientDependency |
|
|
|
|
|
|
|
public async Task<LatestVersionInfo> GetLatestVersionOrNullAsync(string packageId, bool includeNightly = false, bool includeReleaseCandidates = false) |
|
|
|
{ |
|
|
|
if (!includeNightly && !includeReleaseCandidates) |
|
|
|
if (!includeNightly && !includeReleaseCandidates && !packageId.Contains("LeptonX")) |
|
|
|
{ |
|
|
|
var latestStableVersionResult = await GetLatestStableVersionOrNullAsync(); |
|
|
|
if (latestStableVersionResult == null) |
|
|
|
|