Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Commit

Permalink
Autofix: tslint
Browse files Browse the repository at this point in the history
[atomist:generated] [atomist:autofix=tslint]
  • Loading branch information
Jim Clark authored and atomist-bot committed Jun 23, 2019
1 parent dfc7dc7 commit 54e7cf1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions lib/fingerprints/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import {
logger,
projectUtils,
} from "@atomist/automation-client";
import { DockerFileParser } from "../parse/DockerFileParser";
import { ApplyFingerprint, ExtractFingerprint, Feature, FP, sha256 } from "@atomist/sdm-pack-fingerprints";
import { Project } from "@atomist/automation-client/lib/project/Project";
import { File } from "@atomist/automation-client/lib/project/File";
import { Project } from "@atomist/automation-client/lib/project/Project";
import { ApplyFingerprint, ExtractFingerprint, Feature, FP, sha256 } from "@atomist/sdm-pack-fingerprints";
import { DockerFileParser } from "../parse/DockerFileParser";

/**
* Construct a Docker base image fingerprint from the given image and version
Expand Down Expand Up @@ -61,10 +61,10 @@ export const dockerBaseFingerprint: ExtractFingerprint = async p => {

for (const f of files) {
if (f && await f.getContent() !== "") {
fps.push(await parseDockerfile(p, f))
fps.push(await parseDockerfile(p, f));
}
}
return fps
return fps;
};

export const applyDockerBaseFingerprint: ApplyFingerprint = async (p, fp) => {
Expand Down
12 changes: 6 additions & 6 deletions lib/graphql/query/dockerRegistryProvider.graphql
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
query DockerRegistryProvider {
DockerRegistryProvider {
url
name
credential {
id
}
DockerRegistryProvider {
url
name
credential {
id
}
}
}
10 changes: 5 additions & 5 deletions lib/graphql/query/password.graphql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
query Password($id: ID!) {
Password(id: $id) {
owner {
login
}
secret
Password(id: $id) {
owner {
login
}
secret
}
}

0 comments on commit 54e7cf1

Please sign in to comment.