Skip to content

Commit cc30d0b

Browse files
jinliming2juanpicado
authored andcommitted
fix: there can be no spaces between scope and registry (conventional-changelog#34)
1 parent 6f10837 commit cc30d0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webui/utils/cli-utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const copyToClipBoardUtility = (str: string) => (event: SyntheticEvent<HT
2121
};
2222

2323
export function getCLISetConfigRegistry(command: string, scope: string, registryUrl: string): string {
24-
return `${command} ${scope} registry ${registryUrl}`;
24+
return `${command} ${scope}registry ${registryUrl}`;
2525
}
2626

2727
export function getCLISetRegistry(command: string, registryUrl: string): string {

0 commit comments

Comments
 (0)