lib/terragov/terraform.rb in terragov-0.2.5 vs lib/terragov/terraform.rb in terragov-0.2.5.1
- old
+ new
@@ -39,10 +39,10 @@
def run(command, dryrun = false, verbose = false)
if dryrun
puts command
else
puts command if verbose
- abort("There was an issue running the command: #{command}") unless system(full_command)
+ abort("There was an issue running the command: #{command}") unless system(command)
end
end
end
end