resolveStateFilePath method

String resolveStateFilePath(
  1. String projectRootPath
)

Implementation

String resolveStateFilePath(String projectRootPath) {
  if (PathUtils.isAbsolute(stateFile)) {
    return PathUtils.normalize(stateFile);
  }
  return PathUtils.normalize(PathUtils.join(projectRootPath, stateFile));
}