Capistrano deploy rails spin file

written by justin on February 29th, 2008 @ 04:11 PM

I had an issue where my spin file wouldn't work in my capistrano deploy recipe. It was a permissions issue, no execute permissions on my spin file. So to change the file permissions on the repository version you do the following.

To make your spin file work if it is not executable in subversion


# Set an svn property (svn:executable) on the script
svn propset svn:executable ON script/spin

Post a comment