Skip to content

Commit 063fb13

Browse files
authored
fix(examples): fix angular examples prod serve doesn't work on windows (#1699)
In Windows runfiles are not always available thus we need to use the real location using `rlocation`. Closes #1606
1 parent 3ac7722 commit 063fb13

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/angular/src/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ history_server(
209209
# / => src/prodapp
210210
templated_args = [
211211
"-a",
212-
"src/prodapp",
212+
"$(rlocation examples_angular/src/prodapp)",
213213
],
214214
)
215215

examples/angular_view_engine/src/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,6 @@ history_server(
217217
# / => src/prodapp
218218
templated_args = [
219219
"-a",
220-
"src/prodapp",
220+
"$(rlocation examples_angular_view_engine/src/prodapp)",
221221
],
222222
)

0 commit comments

Comments
 (0)