Não é possível executar snapcraft: propriedades adicionais não são permitidas

0

Durante a execução do snapcraft, recebi o seguinte erro: Problemas ao validar snapcraft.yaml :

Additional properties are not allowed ('source' was unexpected)

Estou tentando executar o código c ++ no meu diretório local, no snapcraft meu 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

por favor, alguém dê instruções.

    
por Mathi.J 23.11.2016 / 07:23

1 resposta

1

source precisa estar no mesmo nível de plugin , pois é uma propriedade da parte example .

    
por sergiusens 23.11.2016 / 11:59