Skip to content

Commit 4222066

Browse files
committed
fmt fix
1 parent 27f13d8 commit 4222066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub type Result<T> = std::result::Result<T, GeschichteError>;
4646

4747
/// Check if we're running in a CI environment where clipboard operations may not work
4848
pub fn is_ci_environment() -> bool {
49-
std::env::var("CI").is_ok()
49+
std::env::var("CI").is_ok()
5050
|| std::env::var("CONTINUOUS_INTEGRATION").is_ok()
5151
|| std::env::var("GITHUB_ACTIONS").is_ok()
5252
|| std::env::var("GITLAB_CI").is_ok()

0 commit comments

Comments
 (0)