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

(Fix) Remove redundant 'gsed' dependency check #8

Merged
merged 1 commit into from
Aug 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion umbrel-dev
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fi
# Check required dependencies are installed
# If not, fail with instructions on how to fix
check_dependencies() {
for cmd in "gsed" "git" "vagrant" "vboxmanage"; do
for cmd in "git" "vagrant" "vboxmanage"; do
if ! command -v $cmd >/dev/null 2>&1; then
echo "This script requires Git, VirtualBox and Vagrant to be installed."
echo
Expand Down