diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 18:49:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 18:49:02 -0500 |
commit | e0dd275935c49f5b5b844123d621c5dea1761983 (patch) | |
tree | ab2f9a43c5485a6751016fdf9825b1dd6ba9a808 /cli/build.rs | |
parent | 6de3d7f184a4490d342a4c43af6a04b0b26f8cfd (diff) |
refactor: move generated_symbol_exports_list_* files to napi folder (#16822)
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/build.rs b/cli/build.rs index a7076145a..15be033fd 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -351,7 +351,7 @@ fn main() { panic!("Cross compiling with snapshot is not supported."); } - let symbols_path = std::path::Path::new( + let symbols_path = std::path::Path::new("napi").join( format!("generated_symbol_exports_list_{}.def", env::consts::OS).as_str(), ) .canonicalize() |