Expand a relative path to absolute path.
String expandFilePath(String filePath) { if (filePath.startsWith('/')) return filePath; return '${getAttributionRepoRoot()}/$filePath'; }