Created
March 25, 2011 16:57
-
-
Save saimonmoore/887182 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#from: | |
#chef deploy resource callback | |
before_symlink do | |
rails_env = node["environment"]["framework_env"] | |
run ". /etc/profile; cd #{release_path} && bundle exec rails runner 'Sprocket.configurations.each { |c| Sprocket.new(c).install_script }' RAILS_ENV=#{rails_env}" | |
end | |
#to: | |
before_symlink do | |
rails_env = node["environment"]["framework_env"] | |
run "bash -l -c\" cd #{release_path} && bundle exec rails runner 'Sprocket.configurations.each { |c| Sprocket.new(c).install_script }' RAILS_ENV=#{rails_env}\"" | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment