mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00: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…
Reference in a new issue