Skip to content
Snippets Groups Projects
Commit fb0092cc authored by Nicholas Nakano's avatar Nicholas Nakano
Browse files

Changed from rclone-include.txt to rclone-filter.txt. Excluded unnecessary...

Changed from rclone-include.txt to rclone-filter.txt. Excluded unnecessary directories from RClone consideration.
parent 5e470412
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ done
echo "RClone initialization complete. Pulling files from S3 storage via RClone..."
rclone copy nautilus-s3:ARNOB ./ -P --no-traverse --include-from rclone-include.txt
rclone copy nautilus-s3:ARNOB ./ -P --no-traverse --filter-from rclone-filter.txt
if [ $? -ne 0 ]; then
echo "RClone failed to download files from S3."
......
......@@ -4,7 +4,7 @@
echo "Starting RClone copy from S3 Bucket..."
# Pull Copy: Reads remote and updates local without deleting files
rclone copy -uP nautilus-s3:ARNOB . --include-from rclone-include.txt --no-traverse
rclone copy -uP nautilus-s3:ARNOB . --filter-from rclone-filter.txt --no-traverse
if [ $? -ne 0 ]; then
echo "RClone copy failed."
......
......@@ -4,7 +4,7 @@
echo "Starting RClone copy to S3 Bucket..."
# Push Copy: Reads local and updates remote.
rclone copy -uP . nautilus-s3:ARNOB --include-from rclone-include.txt --no-traverse
rclone copy -uP . nautilus-s3:ARNOB --filter-from rclone-filter.txt --no-traverse
if [ $? -ne 0 ]; then
echo "RClone copy failed."
......
# Directories to ignore
- Saved/**
- Binaries/**
- Build/**
- Intermediate/**
- DerivedDataCache/**
# Submodule Plugins
- Plugins/ArnoEOSPlugin/**
- Plugins/CILogonEOSAuthentication/**
- Plugins/UnrealQRCodeScanner/**
- Plugins/EpicOnlineSubsystem/**
- Plugins/Reztly/**
# Files to be synced with RClone instead of Git
# Large Files
+ *.uasset
+ *.umap
+ *.fbx
+ *.3ds
+ *.psd
+ *.png
+ *.mp3
+ *.wav
+ *.xcf
+ *.jpg
+ *.obj
+ *.gltf
+ *.laz
+ *.las
# Exclude anything not mentioned here
- **
\ No newline at end of file
# Files to be synced with RClone instead of Git
# Large Files
*.uasset
*.umap
*.fbx
*.3ds
*.psd
*.png
*.mp3
*.wav
*.xcf
*.jpg
*.obj
*.gltf
*.laz
*.las
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment