1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-22 05:42:54 +00:00

fixup check for jq in version.sh (#158)

replace kopano-cli in scheduler container (for the moment, binary is currently missing in master)

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels
2019-05-16 22:00:28 +02:00
committed by GitHub
parent 38d9993b68
commit 67219e46cc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
#!/bin/bash
if ! hash jq; then
if ! command -v jq > /dev/null; then
echo "Please install jq in order to run this build script."
exit 1
fi