mirror of
https://github.com/DinheroDevelopmentGroup/modular-minecraft-proxy.git
synced 2025-02-19 19:04:42 -05:00
12 lines
212 B
Bash
12 lines
212 B
Bash
|
#!/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" \
|
||
|
$@
|