11class 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
2930end
0 commit comments