mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
443b318ee9
Change the path to the auto generated plugin assets, which defaults to the plugin's directory and isn't writable at the time of asset generation.
14 lines
392 B
Diff
14 lines
392 B
Diff
diff --git a/lib/plugin/instance.rb b/lib/plugin/instance.rb
|
|
index 380a63e987..b2ce7fa982 100644
|
|
--- a/lib/plugin/instance.rb
|
|
+++ b/lib/plugin/instance.rb
|
|
@@ -403,7 +403,7 @@ class Plugin::Instance
|
|
end
|
|
|
|
def auto_generated_path
|
|
- File.dirname(path) << "/auto_generated"
|
|
+ "#{Rails.root}/public/assets/auto_generated_plugin_assets/#{name}"
|
|
end
|
|
|
|
def after_initialize(&block)
|