From 8a8e5120a249448c7c43387d8c73fbfda357c6cb Mon Sep 17 00:00:00 2001 From: Carl Leduc-Benoit Date: Fri, 17 Jul 2020 11:20:21 -0400 Subject: [PATCH] Fix launcher_template.sh pointing to npm/bazel instead of npm/@bazel which caused the devserver to not find the some runfiles. --- packages/typescript/internal/devserver/launcher_template.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/typescript/internal/devserver/launcher_template.sh b/packages/typescript/internal/devserver/launcher_template.sh index 53ffca4754..e88e32cbd2 100644 --- a/packages/typescript/internal/devserver/launcher_template.sh +++ b/packages/typescript/internal/devserver/launcher_template.sh @@ -43,9 +43,9 @@ esac case "${machine}" in # The following paths must match up with //packages/typescript/devserver binaries # FIXME: we shouldn't hardcode "npm" repository name here - darwin) readonly platform_main_manifest="npm/bazel/typescript/devserver/devserver-darwin_x64" ;; - windows) readonly platform_main_manifest="npm/bazel/typescript/devserver/devserver-windows_x64.exe" ;; - *) readonly platform_main_manifest="npm/bazel/typescript/devserver/devserver-linux_x64" ;; + darwin) readonly platform_main_manifest="npm/@bazel/typescript/devserver/devserver-darwin_x64" ;; + windows) readonly platform_main_manifest="npm/@bazel/typescript/devserver/devserver-windows_x64.exe" ;; + *) readonly platform_main_manifest="npm/@bazel/typescript/devserver/devserver-linux_x64" ;; esac readonly platform_main=$(rlocation "${platform_main_manifest}")