From 249599e8f8fbb0ddb4595d7e71904fae2743e70d Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Mon, 6 Apr 2020 11:10:02 -0400 Subject: [PATCH] Propagate skip-ooo flag to container. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.go b/import.go index 9c933da3de..858550a38c 100644 --- a/import.go +++ b/import.go @@ -101,7 +101,7 @@ func (cmd *importer) RunCommand(prog string, args []string, stdin io.Reader, std err = errors.New("cannot specify output file in container mode: not implemented") return 1 } - runner.Args = append([]string{"import", "-local=true", "-tag-library", cmd.tagLibraryFile, "-ref", cmd.refFile, "-o", cmd.outputFile}, inputs...) + runner.Args = append([]string{"import", "-local=true", fmt.Sprintf("-skip-ooo=%v", cmd.skipOOO), "-tag-library", cmd.tagLibraryFile, "-ref", cmd.refFile, "-o", cmd.outputFile}, inputs...) var output string output, err = runner.Run() if err != nil { -- 2.30.2