diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-01-04 15:41:34 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-01-04 15:41:34 +0100 |
commit | 3e03ed90880f1c8e54138afe16f990569a8f75e3 (patch) | |
tree | fcbe6990eb239294b322afc26a5a66b4ba2803ae /lib | |
parent | bc03878a8cab83ca030cf8cc9e8e36552223de91 (diff) | |
download | capistrano-refinerycms-3e03ed90880f1c8e54138afe16f990569a8f75e3.tar.gz capistrano-refinerycms-3e03ed90880f1c8e54138afe16f990569a8f75e3.tar.bz2 capistrano-refinerycms-3e03ed90880f1c8e54138afe16f990569a8f75e3.zip |
Fix path to config template.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/capistrano/refinerycms/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/capistrano/refinerycms/helpers.rb b/lib/capistrano/refinerycms/helpers.rb index bfafc47..565f450 100644 --- a/lib/capistrano/refinerycms/helpers.rb +++ b/lib/capistrano/refinerycms/helpers.rb @@ -5,7 +5,7 @@ module Capistrano def refinerycms_template(template_name) f = File.join(fetch(:refinerycms_template_path), 'template_name') unless File.exists?(f) - default_template_path = File.join(%W{ .. .. generators capistrano refinerycms templates #{ template_name } }) + default_template_path = File.join(%W{ .. .. .. generators capistrano refinerycms templates #{ template_name } }) f = File.expand_path(default_template_path, __FILE__) end |