Updated gemfile.lock, fixed crash on windows when trying to repair data/ -> Data/ when windows thinks they're the same.

This commit is contained in:
2022-02-05 08:09:02 -06:00
parent 610bee05eb
commit d709e86e14
2 changed files with 7 additions and 4 deletions

View File

@@ -662,6 +662,9 @@ class W3DHub
def repair_windows_case_insensitive(package, path)
return true if @app_id == "apb"
# Windows is just confused
return true if W3DHub.windows?
# Force data/ to Data/
return true unless File.exist?("#{path}/data") && File.directory?("#{path}/data")