Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
build/bin/sage-guess-package-system: Detect macports
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Mar 18, 2021
1 parent e9eeb0b commit 2189890
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/bin/sage-guess-package-system
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ if conda --version > /dev/null 2>&1; then
fi
if brew --version > /dev/null 2>&1; then
echo homebrew
elif port version > /dev/null 2>&1; then
echo macports
elif emerge --version > /dev/null 2>&1; then
echo gentoo
elif apt-get --version > /dev/null 2>&1; then
Expand Down

0 comments on commit 2189890

Please sign in to comment.