Skip to content

Commit

Permalink
Merge pull request #169 from lemberg/issue/163-ruby-error
Browse files Browse the repository at this point in the history
Replace system call with backtick (in order to get output)
  • Loading branch information
T2L committed Mar 6, 2020
2 parents 8f8c575 + 8283d2c commit ba4aa03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provisioning/src/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def is_provisioning
end

if (ARGV.include?("up"))
status = system("vagrant status")
status = `vagrant status`
return status.include? "not created"
end

Expand Down

0 comments on commit ba4aa03

Please sign in to comment.