mirror of
https://github.com/DinheroDevelopmentGroup/modular-minecraft-proxy.git
synced 2024-11-27 09:35:49 -05:00
11 lines
212 B
Bash
Executable file
11 lines
212 B
Bash
Executable file
#!/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" \
|
|
$@
|