Browse Source

Remove redundant gsed dependency check on Linux (#8)

improve-reliability
Arvinda R 4 years ago
committed by GitHub
parent
commit
afb86dfcc3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      umbrel-dev

2
umbrel-dev

@ -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

Loading…
Cancel
Save