无法运行 snapcraft:不允许添加其他属性

无法运行 snapcraft:不允许添加其他属性

运行 snapcraft 时,我收到以下错误,验证时出现问题snapcraft.yaml

不允许添加其他属性(‘source’ 是意外的)

我正在尝试从我的本地目录运行 c++ 代码,在 snapcraft 上我的snapcraft.yaml

 name: calculator-v1-example

version: 0.1

summary: arithmetic operation 

description: perform simple arithmetic operation getting input from the user

grade: stable 

confinement: strict 

build-packages: [gcc, g++]

parts:

  example:

    plugin: cmake

source: .src

apps:

  example:

    command: bin/example

请有人指点。

答案1

source需要与其处于同一级别,plugin因为它是该零件的属性example

相关内容