Skip to content

Commit

Permalink
tweaks to path. it works locally
Browse files Browse the repository at this point in the history
  • Loading branch information
mahiki committed Jul 23, 2024
1 parent 62c7bba commit e1b4764
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Formula/desertislandutils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ class Desertislandutils < Formula

desc "Be here, thy collection of personal convenience utilities"
homepage "https://github.com/mahiki/homebrew-tap"
url "https://github.com/mahiki/desertislandutils/releases/download/v0.3.10/desertislandutils-0.3.10-py3-none-any.whl"
sha256 "ee2a20015a6329e3a298ffd7a562e519161599331c0424c99c4c77afa3af68c3"
url "https://github.com/mahiki/desertislandutils/releases/download/v0.3.10/desertislandutils-0.3.10.tar.gz"
sha256 "9c8304fdb02a1fd9d3ffd460cdaf25f1b22a70f2d18ebde700080d328c306216"
license "MIT"

depends_on "[email protected]"
Expand All @@ -13,9 +13,10 @@ class Desertislandutils < Formula
def install
venv = virtualenv_create(libexec, "python3")
ENV["VIRTUAL_ENV"] = libexec
ENV.prepend_path "PATH", "#{libexec_path}/bin"
puts "instal stage libexec path: #{libexec}"
puts "env VIRTUAL_ENV: #{libexec}"
ENV.prepend_path "PATH", "#{libexec}/bin"
puts "install stage libexec path: #{libexec}"
puts "env VIRTUAL_ENV: #{ENV["VIRTUAL_ENV"]}"
puts "buildpath: #{buildpath}"
cd buildpath do
system "poetry", "install", "--no-root"

Check failure on line 21 in Formula/desertislandutils.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-latest)

Layout/IndentationWidth: Use 2 (not 4) spaces for indentation.
end
Expand Down

0 comments on commit e1b4764

Please sign in to comment.