#!/bin/bash
set -e

mkdir -p bin dist
if [ -e ./ops/$1 ]; then
    ./ops/"$@"
else
    exec "$@"
fi

chown -R $DAPPER_UID:$DAPPER_GID .
