Ver código fonte

Fixes creating tags with message w/ spaces

main
Eric Amodio 5 anos atrás
pai
commit
680c80233c
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/commands/git/tag.ts

+ 1
- 1
src/commands/git/tag.ts Ver arquivo

@ -383,7 +383,7 @@ export class TagGitCommand extends QuickCommandBase {
void state.repo.tag(
...state.flags,
...(hasMessage ? [state.message] : []),
...(hasMessage ? [`"${state.message}"`] : []),
state.name,
state.reference.ref
);

Carregando…
Cancelar
Salvar