Skip to content

Commit 1763395

Browse files
AkihiroSudaBrewTestBot
authored andcommitted
lima 0.7.1
Also add zsh and fish completions (supported since lima 0.7.0). Closes #86859. Signed-off-by: Akihiro Suda <[email protected]> Signed-off-by: Branch Vincent <[email protected]> Signed-off-by: BrewTestBot <[email protected]>
1 parent 9f3dfd1 commit 1763395

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Formula/lima.rb

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class Lima < Formula
22
desc "Linux virtual machines"
33
homepage "https://github.com/lima-vm/lima"
4-
url "https://github.com/lima-vm/lima/archive/v0.6.4.tar.gz"
5-
sha256 "3795568924c0c5eabbc6528b457a0c120383717a7f5c9a64252f032070da5afd"
4+
url "https://github.com/lima-vm/lima/archive/v0.7.1.tar.gz"
5+
sha256 "635d03bde3a8e592350394d45f06b9bdea1dffe747b5a9739711d6e937f2faab"
66
license "Apache-2.0"
77

88
bottle do
@@ -22,9 +22,13 @@ def install
2222
bin.install Dir["_output/bin/*"]
2323
share.install Dir["_output/share/*"]
2424

25-
# Install bash completion
25+
# Install shell completions
2626
output = Utils.safe_popen_read("#{bin}/limactl", "completion", "bash")
2727
(bash_completion/"limactl").write output
28+
output = Utils.safe_popen_read("#{bin}/limactl", "completion", "zsh")
29+
(zsh_completion/"_limactl").write output
30+
output = Utils.safe_popen_read("#{bin}/limactl", "completion", "fish")
31+
(fish_completion/"limactl.fish").write output
2832
end
2933

3034
test do

0 commit comments

Comments
 (0)