Check availability of entr instead now that this works with it

This commit is contained in:
Ebrahim Byagowi 2018-02-19 20:00:07 +03:30 committed by GitHub
parent b095ce59eb
commit fde04777d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
#!/bin/bash
for cmd in cmake ninja fswatch; do
for cmd in cmake ninja entr; do
command -v $cmd >/dev/null 2>&1 || { echo >&2 "This script needs $cmd be installed"; exit 1; }
done