Skip to content

Commit 3b0ca40

Browse files
authored
Merge pull request #210331 from Homebrew/bump-vscli-1.3.0
vscli 1.3.0
2 parents a003399 + 7ada17e commit 3b0ca40

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/autobump.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3614,6 +3614,7 @@ votca
36143614
vpn-slice
36153615
vrc-get
36163616
vsce
3617+
vscli
36173618
vscode-langservers-extracted
36183619
vsearch
36193620
vsh

Formula/v/vscli.rb

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
class Vscli < Formula
22
desc "CLI/TUI that launches VSCode projects, with a focus on dev containers"
33
homepage "https://github.com/michidk/vscli"
4-
url "https://github.com/michidk/vscli/archive/refs/tags/v1.2.0.tar.gz"
5-
sha256 "5d3eed6c34541fca9f98d766a94b287f648af43d219d68e8546f9862abc34259"
4+
url "https://github.com/michidk/vscli/archive/refs/tags/v1.3.0.tar.gz"
5+
sha256 "91384db69cf5b32af96178df79634d5707eaffaf3517a567e965d3c5a32f81fb"
66
license "MIT"
7+
head "https://github.com/michidk/vscli.git", branch: "main"
78

89
bottle do
9-
sha256 cellar: :any_skip_relocation, arm64_sequoia: "a7c075db90e8c2d6a452882b22ee9bcd0cf5982aae60c86e5c26b0564b50d535"
10-
sha256 cellar: :any_skip_relocation, arm64_sonoma: "827740cead93055a587501613a5ee3a96e09a142d33a3be520d2a89cbfc7c856"
11-
sha256 cellar: :any_skip_relocation, arm64_ventura: "9eae28c580f3823adf4dc5e35e914b087a62738dea0451937a8dcdd04c5a98d1"
12-
sha256 cellar: :any_skip_relocation, sonoma: "87fac2025b44db077d1d81139a159b7cb7bab01be03feb53a10b06bcfe76ffe4"
13-
sha256 cellar: :any_skip_relocation, ventura: "bff70db8826ea88914067619f660bdb5aee3f0e9db34487a4810e88d8997e565"
14-
sha256 cellar: :any_skip_relocation, x86_64_linux: "2983fb995eb3a50c2625eeb980831fb431e6201929f8deb8e48b6ed7800e95a1"
10+
sha256 cellar: :any_skip_relocation, arm64_sequoia: "7ccb604795d27bcc966a4aa2a33100b1162c808d2ec875a6e1420e8f879e1416"
11+
sha256 cellar: :any_skip_relocation, arm64_sonoma: "00054eac8e8afb076cb0fdca4d5ff2eef8523963bf88ccbbb8e2a79c438813ce"
12+
sha256 cellar: :any_skip_relocation, arm64_ventura: "e8c0b3a54aa8f18e0e3bdf96941855a4641f73374e4c9c282c72b2aba9decb89"
13+
sha256 cellar: :any_skip_relocation, sonoma: "367ff1a937fc6b20de3ac0f80feb8626e352bdb543ec0ac8958bd9e58a10d2c3"
14+
sha256 cellar: :any_skip_relocation, ventura: "fa1962291453a1152836cd93461515b4eef44d9ae99c70de6f4f204836e7450d"
15+
sha256 cellar: :any_skip_relocation, x86_64_linux: "f8e75d6e48da77d6493750ce4d02c5de079d684e62908f7d3db2219477a8c250"
1516
end
1617

1718
depends_on "rust" => :build
@@ -23,7 +24,7 @@ def install
2324
test do
2425
assert_match version.to_s, shell_output("#{bin}/vscli --version")
2526

26-
output = pipe_output("#{bin}/vscli open --dry-run 2>&1")
27-
assert_match "No dev container found, opening on host system with code..", output
27+
output = shell_output("#{bin}/vscli open --dry-run 2>&1", 1)
28+
assert_match "No dev container found, opening on host system with Visual Studio Code...", output
2829
end
2930
end

0 commit comments

Comments
 (0)