aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2015-01-04 15:41:34 +0100
committerHarald Eilertsen <haraldei@anduin.net>2015-01-04 15:41:34 +0100
commit3e03ed90880f1c8e54138afe16f990569a8f75e3 (patch)
treefcbe6990eb239294b322afc26a5a66b4ba2803ae
parentbc03878a8cab83ca030cf8cc9e8e36552223de91 (diff)
downloadcapistrano-refinerycms-3e03ed90880f1c8e54138afe16f990569a8f75e3.tar.gz
capistrano-refinerycms-3e03ed90880f1c8e54138afe16f990569a8f75e3.tar.bz2
capistrano-refinerycms-3e03ed90880f1c8e54138afe16f990569a8f75e3.zip
Fix path to config template.
-rw-r--r--lib/capistrano/refinerycms/helpers.rb2
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