mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-05-03 16:01:14 +00:00
10 lines
372 B
Bash
10 lines
372 B
Bash
#!/bin/bash
|
|
|
|
TARGET_DIR="../exiled-exchange-2/dataParser"
|
|
|
|
rsync -av --exclude-from='.gitignore' --exclude='data/json' --exclude='data/vendor' --exclude="*.ipynb" --exclude="*.json" --exclude='.git' ./ "$TARGET_DIR"
|
|
|
|
cp ./data/vendor/config.json "$TARGET_DIR/data/vendor"
|
|
|
|
echo "Files successfully copied to $TARGET_DIR, excluding git-ignored files and 'data' directory."
|