33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
Index: node-git.f09c033faf/deps/npm/lib/help-search.js
|
|
===================================================================
|
|
--- node-git.f09c033faf.orig/deps/npm/lib/help-search.js
|
|
+++ node-git.f09c033faf/deps/npm/lib/help-search.js
|
|
@@ -29,7 +29,7 @@ class HelpSearch extends BaseCommand {
|
|
if (!args.length)
|
|
return this.npm.output(this.usage)
|
|
|
|
- const docPath = path.resolve(__dirname, '..', 'docs/content')
|
|
+ const docPath = '/usr/share/doc/packages/nodejs'
|
|
const files = await glob(`${docPath}/*/*.md`)
|
|
const data = await this.readFiles(files)
|
|
const results = await this.searchFiles(args, data, files)
|
|
Index: node-git.f09c033faf/deps/npm/lib/npm.js
|
|
===================================================================
|
|
--- node-git.f09c033faf.orig/deps/npm/lib/npm.js
|
|
+++ node-git.f09c033faf/deps/npm/lib/npm.js
|
|
@@ -236,7 +236,13 @@ const npm = module.exports = new class e
|
|
}
|
|
|
|
get globalPrefix () {
|
|
- return this.config.globalPrefix
|
|
+ let prefix = this.config.globalPrefix
|
|
+
|
|
+ // don't poop all over distro territory - use /usr/local instead
|
|
+ if (prefix === '/usr')
|
|
+ return '/usr/local'
|
|
+
|
|
+ return prefix;
|
|
}
|
|
|
|
set globalPrefix (r) {
|