mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 22:54:27 -04:00
fix apt not installing npm package as separate package
This commit is contained in:
parent
6e7071bd19
commit
146cdff7d9
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class NpmBinary(BaseBinary):
|
||||||
binproviders_supported: List[InstanceOf[BinProvider]] = [apt, brew, env]
|
binproviders_supported: List[InstanceOf[BinProvider]] = [apt, brew, env]
|
||||||
|
|
||||||
overrides: BinaryOverrides = {
|
overrides: BinaryOverrides = {
|
||||||
apt.name: {'install': lambda: None}, # already installed when nodejs is installed
|
apt.name: {'packages': ['npm']}, # already installed when nodejs is installed
|
||||||
brew.name: {'install': lambda: None}, # already installed when nodejs is installed
|
brew.name: {'install': lambda: None}, # already installed when nodejs is installed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue