Add *.blend1 to global ignores, we never need those

This commit is contained in:
Steve Streeting 2020-05-14 12:09:30 +01:00
parent 7cf249f05d
commit 42b1ef5eea

View File

@ -34,6 +34,10 @@ Intermediate
Saved Saved
"@ "@
$root_globalignores = @"
*.blend1
"@
$content_globalignores = @" $content_globalignores = @"
*.bmp *.bmp
*.png *.png
@ -270,6 +274,9 @@ try {
# Ignore root folders we don't need # Ignore root folders we don't need
Set-Svn-Props "svn:ignore" $root_svnignore "." Set-Svn-Props "svn:ignore" $root_svnignore "."
# Add global ignores to root
Set-Svn-Props "svn:global-ignores" $root_globalignores "."
# Globally ignore non .uasset files inside Content # Globally ignore non .uasset files inside Content
# Because we'll put all source files in MediaSource and export into Content for UE import # Because we'll put all source files in MediaSource and export into Content for UE import
# We don't need both the exported version and the uasset # We don't need both the exported version and the uasset