Skip to content
Snippets Groups Projects
Commit eff6da64 authored by thelamer's avatar thelamer
Browse files

check for jq binary

parent 140c558b
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,8 @@ if [ -z ${DOCKER_MODS+x} ]; then ...@@ -6,8 +6,8 @@ if [ -z ${DOCKER_MODS+x} ]; then
fi fi
# Check for curl # Check for curl
if [ ! -f /usr/bin/curl ]; then if [ ! -f /usr/bin/curl ] || [ ! -f /usr/bin/jq ]; then
echo "[mod-init] Curl was not found on this system for Docker mods installing" echo "[mod-init] Curl/JQ was not found on this system for Docker mods installing"
if [ -f /usr/bin/apt ]; then if [ -f /usr/bin/apt ]; then
## Ubuntu ## Ubuntu
apt-get update apt-get update
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment