This repository was archived by the owner on May 27, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
<RootNamespace >Rune.CLI</RootNamespace >
8
8
<ApplicationIcon >resource\icon.ico</ApplicationIcon >
9
9
<StartupObject ></StartupObject >
10
- <Version >0.70.556 -beta</Version >
10
+ <Version >0.70.557 -beta</Version >
11
11
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
12
12
<PlatformTarget >x64</PlatformTarget >
13
13
</PropertyGroup >
38
38
</ItemGroup >
39
39
40
40
<ItemGroup Condition =" $(Configuration) == 'Debug'" >
41
- <PackageReference Include =" Ivy.Versioning" Version =" 3.1.0.1 " >
41
+ <PackageReference Include =" Ivy.Versioning" Version =" 3.1.0" >
42
42
<PrivateAssets >all</PrivateAssets >
43
43
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
44
44
</PackageReference >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public async Task<int> Execute(CommandOption registryOption)
38
38
if ( ! this . Validate ( dir ) )
39
39
return 1 ;
40
40
var indexer = Indexer . FromLocal ( ) . UseLock ( ) ;
41
- foreach ( var package in AncientProject . FromLocal ( ) . deps . Cast < string > ( ) . Where ( package => ! indexer . Exist ( package ) ) )
41
+ foreach ( var package in AncientProject . FromLocal ( ) . deps . Select ( x => x . Key ) . Where ( package => ! indexer . Exist ( package ) ) )
42
42
{
43
43
if ( ! await Registry . By ( registry ) . Exist ( package ) )
44
44
{
@@ -68,7 +68,7 @@ public async Task<int> Execute(CommandOption registryOption)
68
68
continue ;
69
69
}
70
70
}
71
- return 0 ;
71
+ return await Success ( ) ;
72
72
}
73
73
}
74
74
}
You can’t perform that action at this time.
0 commit comments