.buckconfig中的自定义列表?

时间:2017-02-21 14:43:15

标签: buck

我想在我的.buckconfig中拥有一个自定义字符串列表的属性。从the docs开始,我知道这是受支持的。

这是我的.buckconfig

[custom]
  key = a b c 

这是我的BUCK文件(用于测试):

print read_config('custom', 'key')
# etc... 

最后,我想使用read_config('custom', 'key')生成目标的deps列表。

但是当我构建时,我收到了这个错误:

$ buck run :app
Warning raised by BUCK file parser: a b c

这里有什么错误?我该如何解决?

1 个答案:

答案 0 :(得分:1)

For better or worse, Buck parses the build file as python (with the python interpreter). Because you used print, it's messing up that output (either BSER or JSON) so the build file cannot be parsed.