Browse Source
Remove redundant gsed dependency check on Linux (#8)
improve-reliability
Arvinda R
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|