瀏覽代碼

Fixes creating tags with message w/ spaces

main
Eric Amodio 5 年之前
父節點
當前提交
680c80233c
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/commands/git/tag.ts

+ 1
- 1
src/commands/git/tag.ts 查看文件

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

Loading…
取消
儲存