Hi,
At work we have something like this on a build file:
val cloudRepo = Resolver.ssh("work repo", ivyRepo,22)(Resolver.ivyStylePatterns) as ("ivy", Path.userHome / ".ssh" / "id_rsa") withPermissions("0755")
the idea is to connect using ssh on port 22 to the server in val ivyRepo using the username ivy , my ssh key file.
The problem is that if my ssh key requires a password, I get a popup asking for it, no problem, I enter my password for the key, but the popup comes back again.
I think the problem is that my real user on my laptop is diego.medina, but to ssh to my server I use ivy, like:
that works fine, but the ivy popup asks for user and password, but then I think it tries to ssh like
which of curse fails.
Does anyone have any solutions?
Thanks
Diego