Skip to content

Commit

Permalink
Fix version names
Browse files Browse the repository at this point in the history
  • Loading branch information
lostintangent committed Dec 20, 2016
1 parent c5fd5ff commit a9ca690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerCompose/dockerComposeKeyInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ function mergeWithSharedKeys(...versions: KeyInfo[]): KeyInfo {
}

export default <ComposeVersionKeys>{
"1": mergeWithSharedKeys(DOCKER_COMPOSE_V1_KEY_INFO),
"2": mergeWithSharedKeys(DOCKER_COMPOSE_V2_KEY_INFO),
v1: mergeWithSharedKeys(DOCKER_COMPOSE_V1_KEY_INFO),
v2: mergeWithSharedKeys(DOCKER_COMPOSE_V2_KEY_INFO),
"v2.1": mergeWithSharedKeys(DOCKER_COMPOSE_V2_KEY_INFO, DOCKER_COMPOSE_V2_1_KEY_INFO),
All: mergeWithSharedKeys(DOCKER_COMPOSE_V1_KEY_INFO, DOCKER_COMPOSE_V2_KEY_INFO, DOCKER_COMPOSE_V2_1_KEY_INFO)
};

0 comments on commit a9ca690

Please sign in to comment.