소스 검색

Fix strange think usage

Alois Mahdal 9 년 전
부모
커밋
66c5387257
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4
    2
      dotfiles/gittum/bin/sibling

+ 4
- 2
dotfiles/gittum/bin/sibling 파일 보기

@@ -75,5 +75,7 @@ popd >/dev/null
75 75
 
76 76
 test -n "$new_remote" || die "no such remote at sibling: $new_remote at $sibling"
77 77
 
78
-think \'git clone $new_remote\'
79
-git clone "$new_remote"
78
+cmd="git clone $new_remote"
79
+
80
+think "cmd='$cmd'"
81
+$cmd