We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f13d8 commit 4222066Copy full SHA for 4222066
src/error.rs
@@ -46,7 +46,7 @@ pub type Result<T> = std::result::Result<T, GeschichteError>;
46
47
/// Check if we're running in a CI environment where clipboard operations may not work
48
pub fn is_ci_environment() -> bool {
49
- std::env::var("CI").is_ok()
+ std::env::var("CI").is_ok()
50
|| std::env::var("CONTINUOUS_INTEGRATION").is_ok()
51
|| std::env::var("GITHUB_ACTIONS").is_ok()
52
|| std::env::var("GITLAB_CI").is_ok()
0 commit comments