我想在我的.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
这里有什么错误?我该如何解决?
答案 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.