diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-18 13:20:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-18 13:20:11 +0200 |
| commit | b560246f30066f9835633764837e99ff3adcf53b (patch) | |
| tree | a2f19cabe8e95cd10d66879182e63879565d0776 /cli/build.rs | |
| parent | 44a89dd6dc7864822ddb48d030af519160de90a2 (diff) | |
fix: move generated napi symbols to cli/ (#16330)
<!--
Before submitting a PR, please read http://deno.land/manual/contributing
1. Give the PR a descriptive title.
Examples of good title:
- fix(std/http): Fix race condition in server
- docs(console): Update docstrings
- feat(doc): Handle nested reexports
Examples of bad title:
- fix #7123
- update docs
- fix bugs
2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
-->
Diffstat (limited to 'cli/build.rs')
| -rw-r--r-- | cli/build.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cli/build.rs b/cli/build.rs index 48af79101..98d044a3e 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -333,11 +333,7 @@ fn main() { } let symbols_path = std::path::Path::new( - format!( - "napi_sym/generated_symbol_exports_list_{}.def", - env::consts::OS - ) - .as_str(), + format!("generated_symbol_exports_list_{}.def", env::consts::OS).as_str(), ) .canonicalize() .expect( |
