From e2f306511959e1c98c91dc83a037ac874c35bf75 Mon Sep 17 00:00:00 2001 From: Trevor Vaughan Date: Tue, 26 Sep 2017 11:50:08 -0400 Subject: [PATCH] (SIMP-3784) Fix inspec copy (#52) Introduced an error in the last update with InSpec dependency copying --- lib/simp/beaker_helpers/inspec.rb | 2 +- lib/simp/beaker_helpers/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/simp/beaker_helpers/inspec.rb b/lib/simp/beaker_helpers/inspec.rb index 71cec42..722d66a 100644 --- a/lib/simp/beaker_helpers/inspec.rb +++ b/lib/simp/beaker_helpers/inspec.rb @@ -45,7 +45,7 @@ def initialize(sut, profile) copy_to(@sut, local_profile, @profile_dir) if File.exist?(local_deps) - copy_to(@sut, local_deps, @test_dir) + copy_to(@sut, local_deps, @deps_root) end # The results of the inspec scan in Hash form diff --git a/lib/simp/beaker_helpers/version.rb b/lib/simp/beaker_helpers/version.rb index 014644b..c06badd 100644 --- a/lib/simp/beaker_helpers/version.rb +++ b/lib/simp/beaker_helpers/version.rb @@ -1,5 +1,5 @@ module Simp; end module Simp::BeakerHelpers - VERSION = '1.8.4' + VERSION = '1.8.5' end