1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

Don't include PowerShell completions in tgz
This commit is contained in:
Vincent Demeester 2016-11-02 23:32:48 -07:00 committed by GitHub
commit 0f9ba0ea70

View file

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