modular-minecraft-proxy/script/copy.sh

12 lines
212 B
Bash
Raw Normal View History

2024-09-12 22:51:00 -04:00
#!/usr/bin/env bash
# hopefully excluding all ts files
# instead of including all node_modules
# doesn't come to bite me in the ass
# later
rsync \
--verbose \
-a --del src/ dist \
--exclude "*.ts" \
$@