This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/helpers.sh
2019-06-12 12:58:40 +01:00

11 lines
211 B
Bash
Executable file

#!/usr/bin/env bash
OPERATION=$1
shift
ARGS=$*
case ${OPERATION} in
"sculpin-watch") vendor/bin/sculpin generate --clean --no-interaction --server --watch $ARGS;;
"yarn-watch") yarn run watch $ARGS;;
esac