magic_recipes 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/magic_recipes/thin.rb +1 -1
- metadata +1 -1
data/lib/magic_recipes/thin.rb
CHANGED
@@ -11,7 +11,7 @@ module MagicRecipes
|
|
11
11
|
desc "rewrite thin-configurations"
|
12
12
|
task :reconf, roles: :app do
|
13
13
|
template "thin_app_yml.erb", "#{current_path}/config/thin_app.yml"
|
14
|
-
run "#{sudo} rm #{thin_path}/thin_#{app_name}*"
|
14
|
+
run "#{sudo} rm -f #{thin_path}/thin_#{app_name}*"
|
15
15
|
run "#{sudo} ln -sf #{current_path}/config/thin_app.yml #{thin_path}/thin_#{app_name}.yml"
|
16
16
|
end
|
17
17
|
|