Bazelisk 1.16.0 => 1.20.0 (#10168)

This commit is contained in:
Ed Reel
2024-07-17 14:32:26 -05:00
committed by GitHub
parent 32e01b92a8
commit 4610f5cca1

View File

@@ -3,16 +3,16 @@ require 'package'
class Bazelisk < Package
description 'A user-friendly launcher for Bazel.'
homepage 'https://github.com/bazelbuild/bazelisk'
version '1.16.0'
version '1.20.0'
license 'Apache-2.0'
compatibility 'x86_64'
source_url 'https://github.com/bazelbuild/bazelisk/releases/download/v1.16.0/bazelisk-linux-amd64'
source_sha256 '168851e70cf5f95c0e215e7f3aaca5132ffc3c8dd8f585a4157b0be2b53cfe32'
source_url "https://github.com/bazelbuild/bazelisk/releases/download/v#{version}/bazelisk-linux-amd64"
source_sha256 'd9af1fa808c0529753c3befda75123236a711d971d3485a390507122148773a3'
no_compile_needed
no_shrink
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.install 'bazelisk-linux-amd64', "#{CREW_DEST_PREFIX}/bin/bazelisk", mode: 0o755
end
end