Skip to content

Commit

Permalink
towards arm64-apple-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Jun 29, 2022
1 parent 7babfcc commit d699761
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ object FetchBleepRelease {
case (Right("amd64"), Right("darwin")) if isOldLayout => Right(s"$base/bleep-${wanted.value}-x86-64-apple-darwin.gz")
case (Right("amd64"), Right("linux")) if isOldLayout => Right(s"$base/bleep-${wanted.value}-x86-64-pc-linux.gz")
case (Right("amd64"), Right("windows")) if isOldLayout => Right(s"$base/bleep-${wanted.value}-x86-64-pc-win32.zip")
case (Right("arm64"), Right("darwin")) => Right(s"$base/bleep-arm64-apple-darwin.tar.gz")
case (Right("amd64"), Right("darwin")) => Right(s"$base/bleep-x86_64-apple-darwin.tar.gz")
case (Right("amd64"), Right("linux")) => Right(s"$base/bleep-x86_64-pc-linux.tar.gz")
case (Right("amd64"), Right("windows")) => Right(s"$base/bleep-x86_64-pc-win32.zip")
Expand Down
4 changes: 3 additions & 1 deletion channel/bleep.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
"dependencies": [
"build.bleep:bleep-cli_2.13:latest.release"
],
"mainClass": "bleep.Main",
"launcherType": "graalvm-native-image",
"prebuiltBinaries": {
"x86_64-pc-linux": "tgz+https://github.com/oyvindberg/bleep/releases/download/v${version}/bleep-${platform}.tar.gz!bleep",
"x86_64-pc-win32": "zip+https://github.com/oyvindberg/bleep/releases/download/v${version}/bleep-${platform}.zip!bleep.exe",
"x86_64-apple-darwin": "tgz+https://github.com/oyvindberg/bleep/releases/download/v${version}/bleep-${platform}.tar.gz!bleep"
"x86_64-apple-darwin": "tgz+https://github.com/oyvindberg/bleep/releases/download/v${version}/bleep-${platform}.tar.gz!bleep",
"arm64-apple-darwin": "tgz+https://github.com/oyvindberg/bleep/releases/download/v${version}/bleep-${platform}.tar.gz!bleep"
},
"versionOverrides": [
{
Expand Down

0 comments on commit d699761

Please sign in to comment.