]> cat aescling's git repositories - mastodon.git/commitdiff
Fix bootsnap cache directory being declared relatively (#9511)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 13 Dec 2018 04:19:52 +0000 (05:19 +0100)
committerGitHub <noreply@github.com>
Thu, 13 Dec 2018 04:19:52 +0000 (05:19 +0100)
Resolve #9490

config/boot.rb

index beb45a5ee2d2471e779661e8e30dfe909f2982e4..f3e36203aad90ff0b9874d6def3c6fa842941e0c 100644 (file)
@@ -4,7 +4,7 @@ require 'bundler/setup' # Set up gems listed in the Gemfile.
 require 'bootsnap' # Speed up boot time by caching expensive operations.
 
 Bootsnap.setup(
-  cache_dir:            'tmp/cache',
+  cache_dir:            File.expand_path('../tmp/cache', __dir__),
   development_mode:     ENV.fetch('RAILS_ENV', 'development') == 'development',
   load_path_cache:      true,
   autoload_paths_cache: true,