Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit 865d56f

Browse files
committed
Fix delimiter in build.rs
1 parent 06abbe2 commit 865d56f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use version_check::{is_min_date, is_min_version, is_nightly};
55
fn main() {
66
// Switch on for versions that have Error::source
77
// As introduced by https://github.com/rust-lang/rust/pull/53533
8-
if ((is_nightly().unwrap_or(false)
8+
if (is_nightly().unwrap_or(false)
99
&& is_min_date("2018-09-02")
1010
.unwrap_or((false, "".to_string())).0)
1111
|| is_min_version("1.30").unwrap_or((false, "".to_string())).0

0 commit comments

Comments
 (0)