From 57ec4595c6792188dbf01699a49bc0bc2bba8cc8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 19 Feb 2022 05:33:29 +0000 Subject: [PATCH] svgbob 0.6.5 * svgbob 0.6.5 * svgbob: Fix Cargo install path https://github.com/ivanceras/svgbob/commit/2e8685a3bdb8d1e19e9b859459810d038a169943 Closes #95428. Co-authored-by: Issy Long Signed-off-by: Issy Long Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> --- Formula/svgbob.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/svgbob.rb b/Formula/svgbob.rb index 0cfe2097b41..24e88018ea7 100644 --- a/Formula/svgbob.rb +++ b/Formula/svgbob.rb @@ -1,8 +1,8 @@ class Svgbob < Formula desc "Convert your ascii diagram scribbles into happy little SVG" homepage "https://ivanceras.github.io/svgbob-editor/" - url "https://github.com/ivanceras/svgbob/archive/0.6.4.tar.gz" - sha256 "b609542317ddd7adac69b038cca7478849ee0012a3fa18caa8fae2748918c051" + url "https://github.com/ivanceras/svgbob/archive/0.6.5.tar.gz" + sha256 "afbf44bc536d34b974536b2d10059400a1e8e055d30e019520a2322a13a77c28" license "Apache-2.0" head "https://github.com/ivanceras/svgbob.git", branch: "master" @@ -18,7 +18,7 @@ class Svgbob < Formula depends_on "rust" => :build def install - system "cargo", "install", *std_cargo_args(path: "packages/cli") + system "cargo", "install", *std_cargo_args(path: "packages/svgbob_cli") # The cli tool was renamed (0.6.2 -> 0.6.3) # Create a symlink to not break compatibility bin.install_symlink bin/"svgbob_cli" => "svgbob"