Debian

debian bugfix 什麼時候會出現在我的系統上?

  • March 19, 2020

在我的 Debian 10 上,我之前遇到過與 npm 相同的問題:

npm does not support Node.js v10.15.2

搜尋修復我發現該錯誤已在 debian 中修復:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=904422

但是我有來自 debian apt 的最新版本的 npm 包,它仍然是 5.8.0。有人可以解釋一下錯誤修復是否以及何時會出現在 debian stable repo 中?謝謝

該錯誤已在版本 6.13.4+ds-1 中修復,並且該特定版本(或任何更高版本)將永遠不會添加到 Debian 10。您可以要求向後移植到buster-backports,我不確定它有多難將會…

對錯誤報告的回復之一包括 5.8.0 的更新檔,您可以在本地應用該更新檔:

sudo sed -i "s/ver: '9'.*/&,/;/ver: '9'/a{ver: '10', min: '10.0.0'}" /usr/share/npm/lib/utils/unsupported.js

引用自:https://unix.stackexchange.com/questions/573806