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 b898577 commit 3c04fa3Copy full SHA for 3c04fa3
lib/rust_langs_cli_executor.rb
@@ -8,7 +8,7 @@ module RustLangsCliExecutor
8
def self.prepare_submission(clone_path, output_path, submission_path, extra_params = {}, config = {})
9
command = "#{self.langs_executable_path}/current prepare-submission --clone-path '#{clone_path}' --output-path '#{output_path}' --submission-path '#{submission_path}'"
10
command = command + ' --no-archive-prefix' if config[:no_archive_prefix]
11
- command = command + " --stub-zip-path '#{config[:tests_from_stub]}'" if !!config[:tests_from_stub]
+ command = command + " --stub-archive-path '#{config[:tests_from_stub]}'" if !!config[:tests_from_stub]
12
command = command + " --output-format '#{config[:format]}'" if !!config[:format]
13
extra_params.each do |k, v|
14
command = command + " --tmc-param '#{k}=#{v}'" unless v.nil?
0 commit comments