(value float64)
| 1659 | display = firstChars(display, 80) |
| 1660 | } |
| 1661 | return fmt.Sprintf( |
| 1662 | "Command launched in background.\nTask ID: %s\nDescription: %s\n\nOutput file: %s\nError file: %s\n\nUse read_file to check the output file for results.", |
| 1663 | task.TaskID, display, task.OutputPath, task.ErrorPath, |
| 1664 | ), nil |
| 1665 | } |
| 1666 | |
| 1667 | func projectRuntimeDirFromContext(execCtx ExecutionContext, cwd string) string { |
| 1668 | if execCtx != nil { |
| 1669 | if runtimeDir, ok := execCtx["runtime_dir"].(string); ok && strings.TrimSpace(runtimeDir) != "" { |
no outgoing calls
no test coverage detected