Switch pack to snap

This commit is contained in:
2025-04-15 19:55:10 -04:00
parent 6fd84a2192
commit c81d262d79

View File

@@ -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