Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Bug with helm command
- X-seq: zsh-workers 44408
- From: Peter Stephenson <p.stephenson@xxxxxxxxxxx>
- To: Pedro Geadas <pedro.geadas@xxxxxxxxxxxxxxxxxxx>, <zsh-workers@xxxxxxx>
- Subject: Re: Bug with helm command
- Date: Fri, 7 Jun 2019 09:39:52 +0100
- Cms-type: 201P
- Dkim-filter: OpenDKIM Filter v2.11.0 mailout2.w1.samsung.com 20190607083954euoutp02f640c2507500e31cb0453b71e7dc64f4~l3d7KCV4t0919309193euoutp023
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=samsung.com; s=mail20170921; t=1559896794; bh=sjOmRepw21IpmOHaIvbIUoKQYOqxW9GUMaPW3HibAK8=; h=Subject:From:To:Date:In-Reply-To:References:From; b=sY8Xm1pFoGGaEPBoeRKDUV+g+o4otL6Z86T0DVwWI/yQcTHK4lZBvrViO7NfK117A fYzmLmXn/2mtsNmE5tNI7IKkH6duMQYsIp4OjfINX4SEtFVW9bRTLe6dMb0frPpaR6 vRvmlxVe/6ZnCThaV5b4RjDsBtu7R7e5qQ6tCFfc=
- In-reply-to: <CAAm=r-uLgJ+Dg4Zori-4boRAVvt-9qy5_5Jj85E13i6OMgE-+A@mail.gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <CGME20190607031422epcas2p2bebd6e86b67c773d830e766a4b45d6de@epcas2p2.samsung.com> <CAAm=r-uLgJ+Dg4Zori-4boRAVvt-9qy5_5Jj85E13i6OMgE-+A@mail.gmail.com>
On Thu, 2019-06-06 at 14:05 +0200, Pedro Geadas wrote:
> Using helm, when trying to access an array *"--set-string
> array[0].image.tag=test"*, I get this error:
> *"zsh: no matches found: --set-string array[0].image.tag=test"* but
> if I run the same command from bash, it works as expected.
This is normal zsh behaviour --- it does not behave like bash in many
ways by default.
In this case, the default is to report an error if you use pattern
matching characters but no pattern matched. The obvious change is
to add
setopt nonomatch
to your ~/.zshrc. See the manual for more information: possibly the
most useful section is near the top of FILENAME GENERATION in the
zshexpn manual. although you can see a full list of options in the
zshoptions manual. There's a slightly friendlier discussion of that and
related options in the online user guide, somewhere aroun
http://zsh.sourceforge.net/Guide/zshguide02.html#l15
pws
Messages sorted by:
Reverse Date,
Date,
Thread,
Author