cable 0.8.4 → 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cable/capistrano.rb +1 -1
- metadata +2 -1
data/lib/cable/capistrano.rb
CHANGED
@@ -5,7 +5,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
5
5
|
namespace :cable do
|
6
6
|
desc "links the most recent bundled cable gem to shared path."
|
7
7
|
task :symlink do
|
8
|
-
run "cd #{release_path} && ln -nfs `bundle list cable` /
|
8
|
+
run "cd #{release_path} && ln -nfs `bundle list cable` #{shared_path}/cable"
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|