Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
fix: there can be no spaces between scope and registry (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinliming2 authored and juanpicado committed Apr 13, 2019
1 parent 6f10837 commit cc30d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/utils/cli-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const copyToClipBoardUtility = (str: string) => (event: SyntheticEvent<HT
};

export function getCLISetConfigRegistry(command: string, scope: string, registryUrl: string): string {
return `${command} ${scope} registry ${registryUrl}`;
return `${command} ${scope}registry ${registryUrl}`;
}

export function getCLISetRegistry(command: string, registryUrl: string): string {
Expand Down

0 comments on commit cc30d0b

Please sign in to comment.