Lines Matching refs:command
162 for i, command := range manifest.Commands {
167 depFile, err := runCommand(command, localTempDir)
216 func runCommand(command *sbox_proto.Command, tempDir string) (depFile string, err error) {
217 rawCommand := command.GetCommand()
223 if command.GetChdir() {
233 err = copyFiles(command.CopyBefore, "", tempDir, false)
237 err = copyRspFiles(command.RspFiles, tempDir, pathToTempDirInSbox)
253 err = makeOutputDirs(command.CopyAfter, tempDir)
264 if command.GetChdir() {
283 copyFiles(command.CopyAfter, tempDir, "", true)
304 missingOutputErrors := validateOutputFiles(command.CopyAfter, tempDir)
336 err = moveFiles(command.CopyAfter, tempDir, "")