浏览代码

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

正在加载...
取消
保存