Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.

Commit a30d4cc

Browse files
committed
fix default registry in restore command
1 parent 5f34e80 commit a30d4cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/RestoreCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal override CommandLineApplication Setup()
3333

3434
public async Task<int> Execute(CommandOption registryOption)
3535
{
36-
var registry = registryOption.HasValue() ? registryOption.Value() : "github+https://github.com/ancientproject";
36+
var registry = registryOption.HasValue() ? registryOption.Value() : "runic";
3737
var dir = Directory.GetCurrentDirectory();
3838
if (!this.Validate(dir))
3939
return 1;

0 commit comments

Comments
 (0)