Skip to content

Commit 55f762e

Browse files
committed
Try again
1 parent 42926d1 commit 55f762e

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

Formula/buckup.rb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@ def install
1717
else
1818
venv = virtualenv_create(libexec, "python3", without_pip: false)
1919
end
20-
# Update pip
21-
system libexec/"bin/python", "-m", "pip", "install", "--verbose", "--upgrade", "pip"
22-
# Install in editable mode with dependencies
23-
system libexec/"bin/python", "-m", "pip", "install", "--verbose", "-e", buildpath
24-
# Create the final installation
20+
system libexec/"bin/python", "-m", "pip", "install", buildpath
21+
system libexec/"bin/python", "-m", "pip", "uninstall", "-y", "buckup"
2522
venv.pip_install_and_link buildpath
2623
end
2724

Formula/heroku-audit.rb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@ def install
1717
else
1818
venv = virtualenv_create(libexec, "python3", without_pip: false)
1919
end
20-
# Update pip
21-
system libexec/"bin/python", "-m", "pip", "install", "--verbose", "--upgrade", "pip"
22-
# Install in editable mode with dependencies
23-
system libexec/"bin/python", "-m", "pip", "install", "--verbose", "-e", buildpath
24-
# Create the final installation
20+
system libexec/"bin/python", "-m", "pip", "install", buildpath
21+
system libexec/"bin/python", "-m", "pip", "uninstall", "-y", "heroku-audit"
2522
venv.pip_install_and_link buildpath
2623
end
2724

0 commit comments

Comments
 (0)