Skip to content

Commit

Permalink
Updates: just checks if CI env is defined.
Browse files Browse the repository at this point in the history
  • Loading branch information
korvyashka committed May 15, 2024
1 parent 3319c7b commit e55003f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/commands/edge_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,10 +416,8 @@ impl EdgeAppCommand {
}
}
None => {
if let Ok(ci) = std::env::var("CI") {
if ci == "true" {
return Ok(());
}
if let Ok(_ci) = std::env::var("CI") {
return Ok(());
}
self.delete_deleted_settings(
actual_app_id.clone(),
Expand Down

0 comments on commit e55003f

Please sign in to comment.