aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/opts.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/opts.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/opts.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/opts.js b/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/opts.js
deleted file mode 100644
index 144e0a3a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@npmcli/git/lib/opts.js
+++ /dev/null
@@ -1,12 +0,0 @@
-// Values we want to set if they're not already defined by the end user
-// This defaults to accepting new ssh host key fingerprints
-const gitEnv = {
- GIT_ASKPASS: 'echo',
- GIT_SSH_COMMAND: 'ssh -oStrictHostKeyChecking=accept-new'
-}
-module.exports = (opts = {}) => ({
- stdioString: true,
- ...opts,
- shell: false,
- env: opts.env || { ...gitEnv, ...process.env }
-})