Last active
December 22, 2015 05:18
-
-
Save victorcreed/6422601 to your computer and use it in GitHub Desktop.
it's was the monkey patch for shared uploads in capistrano. it will copy all the content from old uploads
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
1.9.1 :001 > Dir.glob("/root/projects/tellum/releases/**/public/uploads/user/photo").each do |p| | |
1.9.1 :002 > FileUtils.cp_r Dir["#{p}/*"], "/root/projects/tellum/shared/uploads/user/photo" rescue puts p | |
1.9.1 :003?> end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment