当我运行$ bower i --allow-root
时,我得到一个“错误:产生EACCES”。我无法弄清楚它的位置和原因。对我的错误的任何帮助表示赞赏。
在.bowerrc
:
{
"scripts": {
"postinstall": "./.bower-postinstall.sh"
}
}
.bower-postinstall.sh
:
#!/bin/bash
cd _op && sudo npm i
答案 0 :(得分:0)
我需要设置$ chmod +x .bower-postinstall.sh
,以便文件可以执行。