mirror of
https://github.com/NixOS/nix
synced 2025-06-28 01:11:15 +02:00
ssh:// -> ssh-ng://, legacy-ssh:// -> ssh://
This commit is contained in:
parent
c5b83d8913
commit
287084d688
4 changed files with 4 additions and 4 deletions
|
@ -47,7 +47,7 @@ int main(int argc, char ** argv)
|
|||
if (sshHost.empty())
|
||||
throw UsageError("no host name specified");
|
||||
|
||||
auto remoteUri = "legacy-ssh://" + sshHost + (gzip ? "?compress=true" : "");
|
||||
auto remoteUri = "ssh://" + sshHost + (gzip ? "?compress=true" : "");
|
||||
auto to = toMode ? openStore(remoteUri) : openStore();
|
||||
auto from = toMode ? openStore() : openStore(remoteUri);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue