Skip to content

Commit

Permalink
Don't set git config features.manyFiles on post install
Browse files Browse the repository at this point in the history
This reverts #31408, as it also sets the git config value `index.skipHash` which breaks cargo at the moment: rust-lang/cargo#11857

Contributors docs have been updated to recommend a shallow clone in #44158, which should alleviate some of the issues that manyFiles addresses.
  • Loading branch information
wbinnssmith committed Mar 21, 2023
1 parent 250160f commit c6ecfc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"next-no-sourcemaps": "cross-env NEXT_TELEMETRY_DISABLED=1 node --trace-deprecation packages/next/dist/bin/next",
"clean-trace-jaeger": "rm -rf test/integration/basic/.next && TRACE_TARGET=JAEGER pnpm next build test/integration/basic",
"debug": "cross-env NEXT_TELEMETRY_DISABLED=1 node --inspect packages/next/dist/bin/next",
"postinstall": "git config feature.manyFiles true && node scripts/install-native.mjs",
"postinstall": "node scripts/install-native.mjs",
"version": "npx pnpm@7.24.3 install && IS_PUBLISH=yes ./scripts/check-pre-compiled.sh && git add .",
"prepare": "husky install",
"sync-react": "node ./scripts/sync-react.js"
Expand Down

0 comments on commit c6ecfc9

Please sign in to comment.