Skip to content

Commit

Permalink
fix(examples): fix angular examples prod serve doesn't work on windows
Browse files Browse the repository at this point in the history
In Windows runfiles are not always available thus we need to use the real location using `rlocation`.

Closes #1606
  • Loading branch information
alan-agius4 committed Mar 9, 2020
1 parent f9be953 commit a0b84f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/angular/src/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ history_server(
# / => src/prodapp
templated_args = [
"-a",
"src/prodapp",
"$(rlocation examples_angular/src/prodapp)",
],
)

Expand Down
2 changes: 1 addition & 1 deletion examples/angular_view_engine/src/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,6 @@ history_server(
# / => src/prodapp
templated_args = [
"-a",
"src/prodapp",
"$(rlocation examples_angular/src/prodapp)",
],
)

0 comments on commit a0b84f0

Please sign in to comment.