diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-06-29 16:57:19 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 16:57:19 +0530 |
commit | 5eb9abd65f97e43b50aeb724deb8e3b7847681e9 (patch) | |
tree | a59b562fbba383ca17ec02c768db9d77c282d870 /test_util/src | |
parent | 91570ba6e85ae927f0979c0d2dde5684cb6823ff (diff) |
chore(cli/bench): Add bun HTTP server (#15004)
Diffstat (limited to 'test_util/src')
-rw-r--r-- | test_util/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/src/lib.rs b/test_util/src/lib.rs index 8df222115..2b679a4e9 100644 --- a/test_util/src/lib.rs +++ b/test_util/src/lib.rs @@ -139,7 +139,7 @@ pub fn prebuilt_tool_path(tool: &str) -> PathBuf { prebuilt_path().join(platform_dir_name()).join(exe) } -fn platform_dir_name() -> &'static str { +pub fn platform_dir_name() -> &'static str { if cfg!(target_os = "linux") { "linux64" } else if cfg!(target_os = "macos") { |