diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-12-07 12:51:26 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-12-07 12:51:26 -0500 |
commit | d238c61a04db3d581ec20b16a5fdc965f941f530 (patch) | |
tree | 2cec3a1466fbad0ae503619ab54e91c7587bd318 | |
parent | f3371b2b10c8056a2f1be5bab9908ee9eafc8d7b (diff) | |
download | pokeviewer-d238c61a04db3d581ec20b16a5fdc965f941f530.tar.gz pokeviewer-d238c61a04db3d581ec20b16a5fdc965f941f530.tar.bz2 pokeviewer-d238c61a04db3d581ec20b16a5fdc965f941f530.zip |
Remove Wittle's compilation step from deploy config
-rw-r--r-- | config/deploy.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/config/deploy.rb b/config/deploy.rb index 6207c71..1aed1b1 100644 --- a/config/deploy.rb +++ b/config/deploy.rb | |||
@@ -49,13 +49,3 @@ set :rails_env, 'production' | |||
49 | set :conditionally_migrate, true | 49 | set :conditionally_migrate, true |
50 | set :migration_role, :app | 50 | set :migration_role, :app |
51 | set :assets_roles, [:app] | 51 | set :assets_roles, [:app] |
52 | |||
53 | namespace :deploy do | ||
54 | after :updated, :compile do | ||
55 | on primary(:app) do | ||
56 | within release_path do | ||
57 | rake "compile" | ||
58 | end | ||
59 | end | ||
60 | end | ||
61 | end | ||