Skip to content

Commit

Permalink
Updates: CI var from 1 to true as of github.
Browse files Browse the repository at this point in the history
  • Loading branch information
korvyashka committed May 14, 2024
1 parent deac8a9 commit 3319c7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/edge_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ impl EdgeAppCommand {
}
None => {
if let Ok(ci) = std::env::var("CI") {
if ci == "1" {
if ci == "true" {
return Ok(());
}
}
Expand Down Expand Up @@ -4137,7 +4137,7 @@ settings:
#[test]
fn test_maybe_delete_missing_settings_when_ci_is_1_and_no_arg_provided_should_ignore_deleting_settings(
) {
env::set_var("CI", "1");
env::set_var("CI", "true");

let mock_server = MockServer::start();
let config = Config::new(mock_server.base_url());
Expand Down

0 comments on commit 3319c7b

Please sign in to comment.