Added ln check for snap (#2357)

* Added ln check for snap

Realised that if you manually created (or already had) a ln it would cause the build to fail.  So added in a check to see if it exists.
Moved commands out of prime-override as it didnt really add anything and made it harder to read

* Version no. update to 0.29.1

The snap package was being built with 0.29.1 but is presenting as 0.27 still (locally and in ubuntu snap store)
mine
Emanuele Ciurleo 2023-12-19 19:47:10 -03:00 committed by GitHub
parent 17ad294ac2
commit 7897fb0eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ faas
demos
/code
kind
*.snap

View File

@ -1,6 +1,6 @@
name: k9s
base: core20
version: 'v0.27.4'
version: 'v0.29.1'
summary: K9s is a CLI to view and manage your Kubernetes clusters.
description: |
K9s is a CLI to view and manage your Kubernetes clusters. By leveraging a terminal UI, you can easily traverse Kubernetes resources and view the state of your clusters in a single powerful session.
@ -38,11 +38,9 @@ parts:
make test
make build
install $SNAPCRAFT_PART_BUILD/execs/k9s -D $SNAPCRAFT_PART_INSTALL/bin/k9s
override-prime: |
mkdir -p $SNAPCRAFT_PART_INSTALL/bin
if [ ! -e $SNAPCRAFT_PART_INSTALL/bin/k9s ]; then
ln -s $SNAPCRAFT_PART_INSTALL/bin/k9s $SNAPCRAFT_PART_INSTALL/bin/k9s
fi
build-packages:
- build-essential
prime:
- $build/bin/k9s