I’ve been trying to make my first snap. It’s just a bash script. I’ve followed the directions posted here but I keep facing the following error:
Failed to generate snap metadata: Specified command 'xst.sh' was not found.
Verify the command is correct and for a more deterministic outcome, specify the relative path to the command from the prime directory.
My snapcraft.yaml
looks like the following:
name: xst
base: core18
version: '1.0'
summary: summary
description: |
Brief description
grade: devel
confinement: devmode
architectures: [ all ]
apps:
xst:
command: xst.sh
parts:
xst:
plugin: nil
Any help would be highly appreciated. Thanks.