Skip to content

Commit

Permalink
fix: add correct libs if canvas and puppeteer are setup (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly authored Feb 9, 2024
1 parent b1a261e commit 1171824
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/providers/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ impl Provider for NodeProvider {
"libxshmfence1".to_string(),
"libglu1".to_string(),
]);
} else if NodeProvider::uses_node_dependency(app, "canvas") {
}

if NodeProvider::uses_node_dependency(app, "canvas") {
setup.add_pkgs_libs(vec!["libuuid".to_string(), "libGL".to_string()]);
}

Expand Down

0 comments on commit 1171824

Please sign in to comment.