Created
January 26, 2014 00:58
-
-
Save smoil/8626317 to your computer and use it in GitHub Desktop.
This file contains 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
task :copy_resque_web_assets do | |
resque_assets = "`bundle show resque`/lib/resque/server/public/*" | |
resque_release_path = "public/admin/resque" | |
queue! %{ | |
echo "-----> Copying resque web assets" && ( | |
#{echo_cmd "mkdir -p ./#{resque_release_path}"} && | |
#{echo_cmd "cp #{resque_assets} ./#{resque_release_path}" } | |
) | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment