Skip to content

Commit 1f49c17

Browse files
committed
.
1 parent 0f5e001 commit 1f49c17

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

crates/pet/build.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ fn main() {
55
#[cfg(target_os = "windows")]
66
{
77
let version = std::env::var("CARGO_PKG_VERSION").unwrap_or_else(|_| "0.1.0".to_string());
8-
8+
99
let mut res = winresource::WindowsResource::new();
1010
res.set("ProductName", "Python Environment Tools");
1111
res.set("FileDescription", "Python Environment Tools");
1212
res.set("CompanyName", "Microsoft Corporation");
13-
res.set("LegalCopyright", "Copyright (c) Microsoft Corporation. All rights reserved.");
13+
res.set(
14+
"LegalCopyright",
15+
"Copyright (c) Microsoft Corporation. All rights reserved.",
16+
);
1417
res.set("OriginalFilename", "pet.exe");
1518
res.set("InternalName", "pet");
1619
res.set("FileVersion", &version);

0 commit comments

Comments
 (0)