We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c1d3f commit a1c6386Copy full SHA for a1c6386
lib/arduino_ci/arduino_cmd.rb
@@ -27,9 +27,10 @@ def initialize(installation)
27
end
28
29
def run(*args)
30
- full_args = [@display_mgr.environment, @installation.cmd_path] + args
31
- puts "Running $ #{full_args.join(' ')}"
32
- system(*full_args)
+ full_args = [@installation.cmd_path] + args
+ full_cmd = [@display_mgr.environment] + full_args
+ puts "Running #{@display_mgr.environment} $ #{full_args.join(' ')}"
33
+ system(*full_cmd)
34
35
36
def board_installed?(board)
0 commit comments