#!/bin/bash
# Enforce a maximum size on the image size

set -eu

if (( '16' '>' $DIB_IMAGE_SIZE )); then
    echo DIB_IMAGE_SIZE=16
fi
