dotfiles/.local/bin/yarn

8 lines
73 B
Bash
Executable file

#!/bin/bash
if [[ $1 == "build" ]]; then
bun run $@
exit
fi
bun $@