Fix image name evaluation.
This commit is contained in:
parent
85dca0cb80
commit
093c6cf1d0
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ public class Reconciler extends Component {
|
|||
continue;
|
||||
}
|
||||
String image = cdrom.get("image").getAsString();
|
||||
if (!image.contains("/")) {
|
||||
if (!image.contains("/") && !image.isEmpty()) {
|
||||
cdrom.addProperty("image",
|
||||
Constants.IMAGE_REPO_PATH + "/" + image);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue