cable 0.8.4 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
|