From 0e4e07a91229007649d27b7cec3b073b0b5cb290 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 13 Sep 2019 18:16:21 +0200 Subject: [PATCH] fix(core): update --- ts/docker.classes.host.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/docker.classes.host.ts b/ts/docker.classes.host.ts index e6e2cab..8ea35dc 100644 --- a/ts/docker.classes.host.ts +++ b/ts/docker.classes.host.ts @@ -56,7 +56,7 @@ export class DockerHost { /** * gets the token from the .docker/config.json file for GitLab registry */ - public getGitlabComTokenFromDockerConfig() { + public async getGitlabComTokenFromDockerConfig() { const dockerConfigPath = plugins.smartpath.get.home('~/.docker/config.json'); const configObject = plugins.smartfile.fs.toObjectSync(dockerConfigPath); this.registryToken = configObject.auths['registry.gitlab.com'].auth;