Skip to content

Commit

Permalink
for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
takutosato committed Aug 1, 2024
1 parent 5fcc7ce commit f8f84d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/picard/nio/PicardBucketUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static PicardHtsPath getLocalTempFilePath(final String prefix, final Stri
* @return A PicardHtsPath object to a randomly generated "directory" e.g. "gs://hellbender-test-logs/staging/picard/test/RevertSam/{randomly-generated-string}/"
*/
public static PicardHtsPath getRandomGCSDirectory(final String relativePath){
ValidationUtils.validateArg(relativePath.endsWith("/"), "relativePath must end in backslash '/': " + relativePath)
ValidationUtils.validateArg(relativePath.endsWith("/"), "relativePath must end in backslash '/': " + relativePath);

return PicardHtsPath.fromPath(PicardBucketUtils.randomRemotePath(GCLOUD_PICARD_STAGING_DIRECTORY + relativePath, "", "/"));
}
Expand Down

0 comments on commit f8f84d4

Please sign in to comment.