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
#1699)

In Windows runfiles are not always available thus we need to use the real location using `rlocation`.

Closes #1606
  • Loading branch information
alan-agius4 authored Mar 11, 2020
1 parent 3ac7722 commit 063fb13
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_view_engine/src/prodapp)",
],
)

0 comments on commit 063fb13

Please sign in to comment.