#!/bin/bash
# DARKTABLE_STUB_VERSION=x.y.z → gibt diese Version aus
if [[ "${1:-}" == "--version" ]]; then
    echo "this is darktable ${DARKTABLE_STUB_VERSION:-5.0.1}"
    exit 0
fi
exit 0
