Skip to content

Commit ce07811

Browse files
committed
fix: Linters
1 parent cc27786 commit ce07811

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

relay-server/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ fn main() {
88
let dest_path = Path::new(&out_dir).join("constants.gen.rs");
99
let mut f = File::create(&dest_path).unwrap();
1010

11-
write!(
11+
writeln!(
1212
f,
13-
"pub const SERVER: &str = \"sentry-relay/{}\";\n",
13+
"pub const SERVER: &str = \"sentry-relay/{}\";",
1414
env::var("CARGO_PKG_VERSION").unwrap()
1515
)
1616
.unwrap();

0 commit comments

Comments
 (0)