Skip to content

Commit

Permalink
Added ln check for snap (derailed#2357)
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
ECiurleo authored and thejoeejoee committed Jan 31, 2024
1 parent 2309d0d commit 0539b62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ faas
.settings/*
demos
/code
kind
kind
*.snap
12 changes: 5 additions & 7 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: k9s
base: core20
version: 'v0.27.4'
base: core20
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.
Expand Down Expand Up @@ -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
ln -s $SNAPCRAFT_PART_INSTALL/bin/k9s $SNAPCRAFT_PART_INSTALL/bin/k9s
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

0 comments on commit 0539b62

Please sign in to comment.