Skip to content

Commit

Permalink
tests: add pkg to gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Aug 27, 2024
1 parent 71782a5 commit ebabd6a
Show file tree
Hide file tree
Showing 14 changed files with 752 additions and 25 deletions.
71 changes: 58 additions & 13 deletions cargo-dist/tests/integration-tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn axolotlsay_basic() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew", "npm"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -48,6 +48,9 @@ npm-scope ="@axodotdev"
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand All @@ -71,7 +74,7 @@ fn axolotlsay_basic_lies() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -84,6 +87,10 @@ npm-scope ="@axodotdev"
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
install-location = "/opt/axolotlsay"
"#
))?;

Expand Down Expand Up @@ -148,7 +155,7 @@ fn axolotlsay_abyss() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
ci = ["github"]
unix-archive = ".tar.gz"
Expand All @@ -161,6 +168,9 @@ github-attestations = true
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand All @@ -185,7 +195,7 @@ fn axolotlsay_abyss_only() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
ci = ["github"]
unix-archive = ".tar.gz"
Expand All @@ -197,6 +207,10 @@ hosting = ["axodotdev"]
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
install-location = "/opt/axolotlsay"
"#
))?;

Expand Down Expand Up @@ -461,7 +475,7 @@ fn axolotlsay_ssldotcom_windows_sign() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "msi"]
installers = ["shell", "powershell", "msi", "pkg"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
ci = ["github"]
ssldotcom-windows-sign = "test"
Expand All @@ -472,6 +486,10 @@ windows-archive = ".tar.gz"
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
install-location = "/opt/axolotlsay"
"#
))?;

Expand All @@ -495,7 +513,7 @@ fn axolotlsay_ssldotcom_windows_sign_prod() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "msi"]
installers = ["shell", "powershell", "msi", "pkg"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
ci = ["github"]
ssldotcom-windows-sign = "prod"
Expand All @@ -506,6 +524,10 @@ windows-archive = ".tar.gz"
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
install-location = "/opt/axolotlsay"
"#
))?;

Expand Down Expand Up @@ -787,7 +809,7 @@ fn axolotlsay_updaters() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -801,6 +823,9 @@ install-updater = true
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand All @@ -826,7 +851,7 @@ fn axolotlsay_homebrew_packages() -> Result<(), miette::Report> {
r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -839,6 +864,9 @@ npm-scope ="@axodotdev"
"homebrew/cask/macfuse" = "*"
libcue = "2.3.0"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand All @@ -862,7 +890,7 @@ fn axolotlsay_alias() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -878,6 +906,10 @@ path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[workspace.metadata.dist.bin-aliases]
axolotlsay = ["axolotlsay-link"]
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
install-location = "/opt/axolotlsay"
"#
))?;

Expand All @@ -901,7 +933,7 @@ fn axolotlsay_several_aliases() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -917,6 +949,9 @@ path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[workspace.metadata.dist.bin-aliases]
axolotlsay = ["axolotlsay-link1", "axolotlsay-link2"]
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand All @@ -940,7 +975,7 @@ fn axolotlsay_alias_ignores_missing_bins() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -956,6 +991,9 @@ path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[workspace.metadata.dist.bin-aliases]
nosuchbin = ["axolotlsay-link1", "axolotlsay-link2"]
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand Down Expand Up @@ -1544,7 +1582,7 @@ fn axolotlsay_disable_source_tarball() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -1558,6 +1596,10 @@ source-tarball = false
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
install-location = "/opt/axolotlsay"
"#
))?;

Expand Down Expand Up @@ -1733,7 +1775,7 @@ fn axolotlsay_build_setup_steps() -> Result<(), miette::Report> {
ctx.patch_cargo_toml(format!(r#"
[workspace.metadata.dist]
cargo-dist-version = "{dist_version}"
installers = ["shell", "powershell", "homebrew", "npm", "msi"]
installers = ["shell", "powershell", "homebrew", "npm", "msi", "pkg"]
tap = "axodotdev/homebrew-packages"
publish-jobs = ["homebrew", "npm"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
Expand All @@ -1748,6 +1790,9 @@ github-build-setup = "build_setup.yml"
upgrade-guid = "B36177BE-EA4D-44FB-B05C-EDDABDAA95CA"
path-guid = "BFD25009-65A4-4D1E-97F1-0030465D90D6"
[package.metadata.dist.mac-pkg-config]
identifier = "dev.axo.axolotsay"
"#
))?;

Expand Down
54 changes: 53 additions & 1 deletion cargo-dist/tests/snapshots/axolotlsay_abyss.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3113,7 +3113,7 @@ run("axolotlsay");
"announcement_is_prerelease": false,
"announcement_title": "Version 0.2.2",
"announcement_changelog": "```text\n +----------------------------------+\n | now with arm64 linux binaries!!! |\n +----------------------------------+\n /\n≽(◕ ᴗ ◕)≼\n```",
"announcement_github_body": "## Release Notes\n\n```text\n +----------------------------------+\n | now with arm64 linux binaries!!! |\n +----------------------------------+\n /\n≽(◕ ᴗ ◕)≼\n```\n\n## Install axolotlsay 0.2.2\n\n### Install prebuilt binaries via shell script\n\n```sh\ncurl --proto '=https' --tlsv1.2 -LsSf https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.sh | sh\n```\n\n### Install prebuilt binaries via powershell script\n\n```sh\npowershell -c \"irm https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.ps1 | iex\"\n```\n\n### Install prebuilt binaries via Homebrew\n\n```sh\nbrew install axolotlsay\n```\n\n### Install prebuilt binaries into your npm project\n\n```sh\nnpm install @axodotdev/[email protected]\n```\n\n## Download axolotlsay 0.2.2\n\n| File | Platform | Checksum |\n|--------|----------|----------|\n| [axolotlsay-aarch64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-x86_64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.msi](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi.sha256) |\n| [axolotlsay-x86_64-unknown-linux-gnu.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz) | x64 Linux | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz.sha256) |\n\n## Verifying GitHub Artifact Attestations\n\nThe artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the [GitHub CLI](https://cli.github.com/manual/gh_attestation_verify):\n```sh\ngh attestation verify <file-path of downloaded artifact> --repo axodotdev/axolotlsay\n```\n\nYou can also download the attestation from [GitHub](https://github.com/axodotdev/axolotlsay/attestations) and verify against that directly:\n```sh\ngh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>\n```\n\n",
"announcement_github_body": "## Release Notes\n\n```text\n +----------------------------------+\n | now with arm64 linux binaries!!! |\n +----------------------------------+\n /\n≽(◕ ᴗ ◕)≼\n```\n\n## Install axolotlsay 0.2.2\n\n### Install prebuilt binaries via shell script\n\n```sh\ncurl --proto '=https' --tlsv1.2 -LsSf https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.sh | sh\n```\n\n### Install prebuilt binaries via powershell script\n\n```sh\npowershell -c \"irm https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-installer.ps1 | iex\"\n```\n\n### Install prebuilt binaries via Homebrew\n\n```sh\nbrew install axolotlsay\n```\n\n### Install prebuilt binaries into your npm project\n\n```sh\nnpm install @axodotdev/[email protected]\n```\n\n## Download axolotlsay 0.2.2\n\n| File | Platform | Checksum |\n|--------|----------|----------|\n| [axolotlsay-aarch64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-aarch64-apple-darwin.pkg](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.pkg) | Apple Silicon macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-aarch64-apple-darwin.pkg.sha256) |\n| [axolotlsay-x86_64-apple-darwin.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.tar.gz.sha256) |\n| [axolotlsay-x86_64-apple-darwin.pkg](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.pkg) | Intel macOS | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-apple-darwin.pkg.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.tar.gz.sha256) |\n| [axolotlsay-x86_64-pc-windows-msvc.msi](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi) | x64 Windows | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-pc-windows-msvc.msi.sha256) |\n| [axolotlsay-x86_64-unknown-linux-gnu.tar.gz](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz) | x64 Linux | [checksum](https://fake.axo.dev/faker/axolotlsay/fake-id-do-not-upload/axolotlsay-x86_64-unknown-linux-gnu.tar.gz.sha256) |\n\n## Verifying GitHub Artifact Attestations\n\nThe artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the [GitHub CLI](https://cli.github.com/manual/gh_attestation_verify):\n```sh\ngh attestation verify <file-path of downloaded artifact> --repo axodotdev/axolotlsay\n```\n\nYou can also download the attestation from [GitHub](https://github.com/axodotdev/axolotlsay/attestations) and verify against that directly:\n```sh\ngh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>\n```\n\n",
"releases": [
{
"app_name": "axolotlsay",
Expand All @@ -3127,8 +3127,12 @@ run("axolotlsay");
"axolotlsay-npm-package.tar.gz",
"axolotlsay-aarch64-apple-darwin.tar.gz",
"axolotlsay-aarch64-apple-darwin.tar.gz.sha256",
"axolotlsay-aarch64-apple-darwin.pkg",
"axolotlsay-aarch64-apple-darwin.pkg.sha256",
"axolotlsay-x86_64-apple-darwin.tar.gz",
"axolotlsay-x86_64-apple-darwin.tar.gz.sha256",
"axolotlsay-x86_64-apple-darwin.pkg",
"axolotlsay-x86_64-apple-darwin.pkg.sha256",
"axolotlsay-x86_64-pc-windows-msvc.tar.gz",
"axolotlsay-x86_64-pc-windows-msvc.tar.gz.sha256",
"axolotlsay-x86_64-pc-windows-msvc.msi",
Expand All @@ -3154,6 +3158,30 @@ run("axolotlsay");
}
],
"artifacts": {
"axolotlsay-aarch64-apple-darwin.pkg": {
"name": "axolotlsay-aarch64-apple-darwin.pkg",
"kind": "installer",
"target_triples": [
"aarch64-apple-darwin"
],
"assets": [
{
"id": "axolotlsay-aarch64-apple-darwin-exe-axolotlsay",
"name": "axolotlsay",
"path": "axolotlsay",
"kind": "executable"
}
],
"description": "install via pkg",
"checksum": "axolotlsay-aarch64-apple-darwin.pkg.sha256"
},
"axolotlsay-aarch64-apple-darwin.pkg.sha256": {
"name": "axolotlsay-aarch64-apple-darwin.pkg.sha256",
"kind": "checksum",
"target_triples": [
"aarch64-apple-darwin"
]
},
"axolotlsay-aarch64-apple-darwin.tar.gz": {
"name": "axolotlsay-aarch64-apple-darwin.tar.gz",
"kind": "executable-zip",
Expand Down Expand Up @@ -3290,6 +3318,30 @@ run("axolotlsay");
"install_hint": "npm install @axodotdev/[email protected]",
"description": "Install prebuilt binaries into your npm project"
},
"axolotlsay-x86_64-apple-darwin.pkg": {
"name": "axolotlsay-x86_64-apple-darwin.pkg",
"kind": "installer",
"target_triples": [
"x86_64-apple-darwin"
],
"assets": [
{
"id": "axolotlsay-x86_64-apple-darwin-exe-axolotlsay",
"name": "axolotlsay",
"path": "axolotlsay",
"kind": "executable"
}
],
"description": "install via pkg",
"checksum": "axolotlsay-x86_64-apple-darwin.pkg.sha256"
},
"axolotlsay-x86_64-apple-darwin.pkg.sha256": {
"name": "axolotlsay-x86_64-apple-darwin.pkg.sha256",
"kind": "checksum",
"target_triples": [
"x86_64-apple-darwin"
]
},
"axolotlsay-x86_64-apple-darwin.tar.gz": {
"name": "axolotlsay-x86_64-apple-darwin.tar.gz",
"kind": "executable-zip",
Expand Down
Loading

0 comments on commit ebabd6a

Please sign in to comment.