Skip to content

Commit

Permalink
Automated rollback of commit 1bf174a.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 636350923
  • Loading branch information
mai93 authored and Copybara-Service committed May 23, 2024
1 parent f3cb334 commit f089508
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ private static File findAspectDirectory() {
}

private static String getAspectRepositoryOverrideFlag() {
return OVERRIDE_REPOSITORY_FLAG + "=\"" + findAspectDirectory().getPath() + "\"";
return OVERRIDE_REPOSITORY_FLAG + "=" + findAspectDirectory().getPath();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private static File findAspectDirectory() {

private static String getAspectRepositoryOverrideFlag() {
return String.format(
"--override_repository=intellij_aspect=\"%s\"", findAspectDirectory().getPath());
"--override_repository=intellij_aspect=%s", findAspectDirectory().getPath());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public ImmutableList<String> getBuildFlags(BlazeVersionData versionData) {

private static String getAspectRepositoryOverrideFlag() {
return String.format(
"--override_repository=intellij_aspect=\"%s\"", findAspectDirectory().getPath());
"--override_repository=intellij_aspect=%s", findAspectDirectory().getPath());
}

private static File findAspectDirectory() {
Expand Down

0 comments on commit f089508

Please sign in to comment.