docker: isAvailable use get

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-02-01 16:49:46 +01:00
parent c89aa60986
commit 765b23685c
3 changed files with 5 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ export class Buildx {
this.context = opts.context;
this.inputs = new Inputs(this.context);
this.install = new Install({standalone: opts.standalone});
this.standalone = opts?.standalone ?? !Docker.isAvailable();
this.standalone = opts?.standalone ?? !Docker.isAvailable;
}
public getCommand(args: Array<string>) {