Skip to content

Commit

Permalink
(SIMP-3784) Typo Fix (#53)
Browse files Browse the repository at this point in the history
Inadvertently left in a call to @@has_rsync in place
  • Loading branch information
trevor-vaughan authored Sep 26, 2017
1 parent e2f3065 commit 6d97929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/simp/beaker_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def copy_to(sut, src, dest, opts={})
end

%x(tar #{exclude_list.join(' ')} -hcf - -C "#{File.dirname(src)}" "#{File.basename(src)}" | docker exec -i "#{sut.hostname}" tar -C "#{dest}" -xf -)
elsif @@has_rsync
elsif @has_rsync
rsync_to(sut, src, dest, opts)
else
scp_to(sut, src, dest, opts)
Expand Down
2 changes: 1 addition & 1 deletion lib/simp/beaker_helpers/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Simp; end

module Simp::BeakerHelpers
VERSION = '1.8.5'
VERSION = '1.8.6'
end

0 comments on commit 6d97929

Please sign in to comment.