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

Commit

Permalink
Remove redundant gsed dependency check on Linux (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
vindard authored Aug 20, 2020
1 parent f561ecd commit afb86df
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit afb86df

Please sign in to comment.