소스 검색

Merge pull request #28016 from thaJeztah/dont-include-powershell-in-tgz

Don't include PowerShell completions in tgz
Vincent Demeester 8 년 전
부모
커밋
0f9ba0ea70
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hack/make/tgz

+ 1 - 1
hack/make/tgz

@@ -58,7 +58,7 @@ for d in "$CROSS/"*/*; do
 	copy_binaries $TAR_PATH
 
 	# add completions
-	for s in bash fish powershell zsh; do
+	for s in bash fish zsh; do
 		mkdir -p $TAR_PATH/completion/$s
 		cp -L contrib/completion/$s/*docker* $TAR_PATH/completion/$s/
 	done