We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa1205 commit 06b1314Copy full SHA for 06b1314
postgresql_extensions/src/repository/portal_corp/repository.rs
@@ -87,7 +87,10 @@ impl Repository for PortalCorp {
87
let file_path = PathBuf::from(file_path.file_name().unwrap_or_default());
88
let file_name = file_path.to_string_lossy();
89
90
- if file_name.ends_with(".dylib") || file_name.ends_with(".so") {
+ if file_name.ends_with(".dll")
91
+ || file_name.ends_with(".dylib")
92
+ || file_name.ends_with(".so")
93
+ {
94
let mut out = Vec::new();
95
io::copy(&mut file, &mut out)?;
96
let path = PathBuf::from(&library_dir).join(file_path);
0 commit comments