瀏覽代碼

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