Files
Exiled-Exchange-2/dataParser/copymain.sh
T
Kvan7 f397d67e7e Features/pushPrivateParser (#759)
Adds copy of parser from private repo
2025-12-06 22:53:27 -06:00

10 lines
352 B
Bash

#!/bin/bash
TARGET_DIR="../exiled-exchange-2/dataParser"
rsync -av --exclude-from='.gitignore' --exclude='data/json' --exclude='data/vendor' --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."