File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ This is a [changelog](https://keepachangelog.com/en/1.0.0/).
5
5
This project attempts to follow [ semantic versioning] ( https://semver.org/ )
6
6
7
7
## Unreleased
8
+
9
+ ## 1.6.6
10
+ * Fix to paths for remote cap tasks that caused execjs to fail in some circumstances
11
+
8
12
## 1.6.5
9
13
* Add Application Decision Record generator
10
14
Original file line number Diff line number Diff line change 52
52
53
53
def run_interactively ( command )
54
54
port = host . port || 22
55
- puts " ssh #{ host . user } @#{ host } -p #{ port } -t 'cd #{ deploy_to } /current; #{ command } '"
56
- exec " ssh #{ host . user } @#{ host } -p #{ port } -t 'cd #{ deploy_to } /current; #{ command } '"
55
+ puts %Q( ssh #{ host . user } @#{ host } -p #{ port } -t '/bin/bash -l -c " cd #{ deploy_to } /current; #{ command } "')
56
+ exec %Q( ssh #{ host . user } @#{ host } -p #{ port } -t '/bin/bash -l -c " cd #{ deploy_to } /current; #{ command } "')
57
57
end
58
58
59
59
def rails_env
Original file line number Diff line number Diff line change 1
1
require 'open-uri'
2
2
3
3
module JefferiesTube
4
- VERSION = "1.6.5 "
4
+ VERSION = "1.6.6 "
5
5
6
6
def self . latest_rubygems_version
7
7
JSON . parse ( URI . parse ( "https://rubygems.org/api/v1/versions/jefferies_tube/latest.json" ) . read ) [ "version" ]
You can’t perform that action at this time.
0 commit comments