aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/bisect_flag.go
diff options
context:
space:
mode:
Diffstat (limited to 'compiler_wrapper/bisect_flag.go')
-rw-r--r--compiler_wrapper/bisect_flag.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler_wrapper/bisect_flag.go b/compiler_wrapper/bisect_flag.go
index eb96939a..9cab75bd 100644
--- a/compiler_wrapper/bisect_flag.go
+++ b/compiler_wrapper/bisect_flag.go
@@ -13,13 +13,13 @@ func calcBisectCommand(env env, bisectStage string, compilerCmd *command) *comma
}
absCompilerPath := getAbsCmdPath(env, compilerCmd)
return &command{
- path: "/usr/bin/python2",
- args: append([]string{
+ Path: "/usr/bin/python2",
+ Args: append([]string{
"-c",
bisectPythonCommand,
bisectStage,
bisectDir,
absCompilerPath,
- }, compilerCmd.args...),
+ }, compilerCmd.Args...),
}
}