8000 Always build ci workspace without trailing separator by daniel-mohedano · Pull Request #8788 · DataDog/dd-trace-java · GitHub
[go: up one dir, main page]

Skip to content

Always build ci workspace without trailing separator #8788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix spotless
  • Loading branch information
daniel-mohedano committed May 9, 2025
commit 53f52c0a0dd52ec6293fd26cfc8caf48985d0515
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,7 @@ public String getCiJobUrl() {
return ciJobUrl;
}

/**
* @return Workspace path without the trailing separator
*/
/** @return Workspace path without the trailing separator */
public String getCiWorkspace() {
String realCiWorkspace = FileUtils.toRealPath(ciWorkspace);
return (realCiWorkspace == null || !realCiWorkspace.endsWith(File.separator))
Expand Down
0