Browse Source

Switch pack to snap

bryan 1 week ago
parent
commit
c81d262d79
1 changed files with 1 additions and 4 deletions
  1. 1 4
      installJRMC

+ 1 - 4
installJRMC

@@ -1130,9 +1130,6 @@ install_mc_snap() {
 		      - removable-media
 	EOF
 
-  echo "snapcraft.yaml created at $snap_yaml"
-  echo "Building snap package..."
-
   # Be careful with snapcraft container paths
   # The container does not respect the --workdir
   # Also has incompatible --entrypoint so need to override manually
@@ -1141,7 +1138,7 @@ install_mc_snap() {
     -w /build \
     --entrypoint "" \
     ghcr.io/canonical/snapcraft:8_core24 \
-    snapcraft pack -o "/build/snap/${MC_PKG}_${MC_VERSION}-${MC_RELEASE}.snap" --destructive-mode \
+    snapcraft snap -o "/build/snap/${MC_PKG}_${MC_VERSION}-${MC_RELEASE}.snap" --destructive-mode \
     && [[ -f "$snap_dir/${MC_PKG}_${MC_VERSION}-${MC_RELEASE}.snap" ]]; then
       echo "Snap package built successfully: $snap_dir/${MC_PKG}_${MC_VERSION}-${MC_RELEASE}.snap"
   else