@p0security/cli 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -291,6 +291,9 @@ const createProxyCommands = (data, args, debug) => {
|
|
|
291
291
|
scp: [
|
|
292
292
|
"scp",
|
|
293
293
|
...(debug ? ["-v"] : []),
|
|
294
|
+
// ignore any overrides in the user's config file, we only want to use the ssh-agent we've set up for the session
|
|
295
|
+
"-o",
|
|
296
|
+
"IdentityAgent=$SSH_AUTH_SOCK",
|
|
294
297
|
"-o",
|
|
295
298
|
`ProxyCommand='${ssmCommand.join(" ")}'`,
|
|
296
299
|
// if a response is not received after three 5 minute attempts,
|