#!/bin/bash set -e trap "chown -R $DAPPER_UID:$DAPPER_GID ." exit mkdir -p bin dist build if [ -e ./scripts/$1 ]; then ./scripts/"$@" else "$@" fi