Ignore caches

This commit is contained in:
Leeingnyo
2021-09-10 20:24:54 +09:00
parent 4409ed8f45
commit 0a90e3b333
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ class Library
def self.load_instance
dir = Config.current.library_path
return unless Dir.exists? dir
instance_file_path = File.join path, "library.yml.zip"
instance_file_path = File.join dir, "library.yml.zip"
return unless File.exists? instance_file_path
zip_file = Compress::Zip::File.new instance_file_path
@@ -38,7 +38,7 @@ class Library
zip_file.close
scan
Library.default.scan
end
def initialize