Przeglądaj źródła

Fixes creating tags with message w/ spaces

main
Eric Amodio 5 lat temu
rodzic
commit
680c80233c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/commands/git/tag.ts

+ 1
- 1
src/commands/git/tag.ts Wyświetl plik

@ -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
);

Ładowanie…
Anuluj
Zapisz