Skip to content

Commit ab646cf

Browse files
authoredMay 6, 2021
Do not allow git replacement objects by default (#30)
Fix: https://github.com/github/npm-cli/issues/46
1 parent 94e2543 commit ab646cf

File tree

5 files changed

+85
-295
lines changed

5 files changed

+85
-295
lines changed
 

‎lib/clone.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const pickManifest = require('npm-pick-manifest')
3030
const fs = require('fs')
3131
const mkdirp = require('mkdirp')
3232

33-
module.exports = (repo, ref = 'HEAD', target = null, /* istanbul ignore next */ opts = {}) =>
33+
module.exports = (repo, ref = 'HEAD', target = null, opts = {}) =>
3434
revs(repo, opts).then(revs => clone(
3535
repo,
3636
revs,

‎lib/spawn.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ module.exports = (gitArgs, opts = {}) => {
1010

1111
if (gitPath instanceof Error) { return Promise.reject(gitPath) }
1212

13+
// undocumented option, mostly only here for tests
14+
const args = opts.allowReplace || gitArgs[0] === '--no-replace-objects'
15+
? gitArgs
16+
: ['--no-replace-objects', ...gitArgs]
17+
1318
const log = opts.log || procLog
1419
let retry = opts.retry
1520
if (retry === null || retry === undefined) {
@@ -22,11 +27,11 @@ module.exports = (gitArgs, opts = {}) => {
2227
}
2328
return promiseRetry((retry, number) => {
2429
if (number !== 1) {
25-
log.silly('pacote', `Retrying git command: ${
26-
gitArgs.join(' ')} attempt # ${number}`)
30+
log.silly('git', `Retrying git command: ${
31+
args.join(' ')} attempt # ${number}`)
2732
}
2833

29-
return spawn(gitPath, gitArgs, makeOpts(opts))
34+
return spawn(gitPath, args, makeOpts(opts))
3035
.catch(er => {
3136
if (!shouldRetry(er.stderr, number)) {
3237
throw er

‎package-lock.json

-284
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)