I'm having problems with the chmod command. I get the following error:
---ERROR--
D:\fapbox.com>cap deploy
[DEPRECATION] Capistrano.configuration is deprecated. Use
Capistrano::Configurat
ion.instance instead
* executing `deploy'
* executing `deploy:update'
** transaction:
Jamis Buck wrote:
> Many people are doing this with a task that gets called after the code
> is pushed out, something like this:
>
> after "deploy:update_code", :fix_script_perms
>
> task :fix_script_perms do
> run "chmod 755 #{latest_release}/script/spin"
> end
>
> Alternatively, if
Jamis Buck wrote:
> Make sure script/spin has the correct permissions on it (at least
> readable and executable) for the user that is being used to execute
> it.
>
> - Jamis
Hi Jamis,
How could I do this with capistrano?
--
Posted via http://www.ruby-forum.com/.
--~--~-~--~~--
I think I've found the problem. I didn't have neon installed. Just
installed it now and everything seems to work brilliantly.
--
Posted via http://www.ruby-forum.com/.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
I've setup my deploy recipe. Although I might have missed some important
steps as I'm new to all this jazz. Anyway here's my deploy.rb:
-
set :application, "fapbox"
set :repository, "http://www.fapbox.com/svn/fapbox/";
set :deploy_to, "/home/fapbox/"
set :user, "root"
set :svn_
Hi Jamis,
The SVN repos isn't the one listed but I've checked it several times and
it's definately the right place.
--
Posted via http://www.ruby-forum.com/.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Dep
Hi guys,
I've just started using capistrano so forgive me if I've done something
moronic. I've run capify and cap deploy:setup which all worked fine. But
when I try to deploy my app I get the following error:
F:\personal\app>cap deploy
* executing `dep
Thanks for the reply.
Would it be easier if I just setup SVN on my server (fedora core 5)? If
some are there any decent, easy to follow tutorials out there for a
server n00b?
--
Posted via http://www.ruby-forum.com/.
--~--~-~--~~~---~--~~
You received this mess
I've managed to setup SVN on my windows XP box without too much hassle.
I can commit and export without any problems. But when I try to run cap
deploy I get the error below. Any ideas?
---ERROR---
D:\Coding\Rails\myapp>cap deplo