

























Thank you all! It should now conflict with trello, and I've updated to 0.3.0.
@mprom Version 0.3.0 has just been released to NPM which makes refreshing more efficient and removes this error
Should conflict with package trello (both provide the file /usr/bin/trello, which does quite different things in both packages).
When I try to do trello refresh after being authorized etc. I get this error:
▶ trello refresh
Organization, board, list, and user cache refreshed
/usr/lib/node_modules/trello-cli/src/translator.js:114
throw err;
^
Error: [object Object]
at Request._callback (/usr/lib/node_modules/trello-cli/node_modules/node-trello/lib/node-trello.js:88:13)
at Request.self.callback (/usr/lib/node_modules/trello-cli/node_modules/request/request.js:187:22)
at Request.emit (events.js:189:13)
at Request.<anonymous> (/usr/lib/node_modules/trello-cli/node_modules/request/request.js:1044:10)
at Request.emit (events.js:189:13)
at IncomingMessage.<anonymous> (/usr/lib/node_modules/trello-cli/node_modules/request/request.js:965:12)
at IncomingMessage.emit (events.js:194:15)
at endReadableNT (_stream_readable.js:1125:12)
at process._tickCallback (internal/process/next_tick.js:63:19)
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
It does download stuff during
package(). This must not happen. An internet connection must not be assumed after finishingprepare()andpkgver()(i.e., neither inbuild(), nor incheck(), nor inpackage()).So, please make sure that everything needed to build the package gets downloaded by the
source-array (thus the specifications of download agents the user has done in themakepkg.confare honoured) and viamakedepends. Only as an exception you can also use theprepare()-function for it.Thanks for maintaining!