mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
lint: fixing fmt issue
This commit is contained in:
@@ -257,7 +257,7 @@ impl ContainerRegistry for DOCR {
|
||||
"While tyring to get all tags for image: {}, maybe this image not exist !",
|
||||
&image.name
|
||||
);
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
},
|
||||
@@ -266,7 +266,7 @@ impl ContainerRegistry for DOCR {
|
||||
"While trying to communicate with DigitalOcean API to retrieve all tags for image {}",
|
||||
&image.name
|
||||
);
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
@@ -299,7 +299,7 @@ impl ContainerRegistry for DOCR {
|
||||
"while retrieving tags for image {} Unable to get output from DigitalOcean API",
|
||||
&image.name
|
||||
);
|
||||
|
||||
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,8 +74,8 @@ pub fn checkout_submodules(repo: &Repository) -> Result<(), Error> {
|
||||
for mut submodule in submodules {
|
||||
info!("getting submodule {:?} from {:?}", submodule.name(), submodule.url());
|
||||
|
||||
if let Err(e) = submodule.update(true, None) {
|
||||
return Err(e)
|
||||
if let Err(e) = submodule.update(true, None) {
|
||||
return Err(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user