install: Use Apt for Linux package management

This commit is contained in:
2024-11-15 20:43:31 -05:00
parent 3363ba4324
commit 22d430d8dd

View File

@@ -12,6 +12,8 @@ case `uname` in
brew install -q $(< ./dependencies/homebrew.txt) brew install -q $(< ./dependencies/homebrew.txt)
;; ;;
Linux) Linux)
echo "Installing dependencies with Apt"
sudo apt install $(< ./dependencies/apt.txt)
;; ;;
esac esac