summaryrefslogtreecommitdiff
path: root/vendor/github.com/mattn/go-shellwords
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-06-10 06:28:23 +0000
committerGitHub <noreply@github.com>2021-06-10 06:28:23 +0000
commitb5890fc86bdaacccf0e523c5c2774e1fd1c675f6 (patch)
tree3ff85852ced121567381c9db6af6edcde75be124 /vendor/github.com/mattn/go-shellwords
parentea39735845655aaf77de577a35557a0fb003514f (diff)
downloadpodman-b5890fc86bdaacccf0e523c5c2774e1fd1c675f6.tar.gz
podman-b5890fc86bdaacccf0e523c5c2774e1fd1c675f6.tar.bz2
podman-b5890fc86bdaacccf0e523c5c2774e1fd1c675f6.zip
Bump github.com/containers/storage from 1.32.1 to 1.32.2
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.32.1 to 1.32.2. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.32.1...v1.32.2) --- updated-dependencies: - dependency-name: github.com/containers/storage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/mattn/go-shellwords')
-rw-r--r--vendor/github.com/mattn/go-shellwords/shellwords.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/mattn/go-shellwords/shellwords.go b/vendor/github.com/mattn/go-shellwords/shellwords.go
index 01afd94d1..1b42a0017 100644
--- a/vendor/github.com/mattn/go-shellwords/shellwords.go
+++ b/vendor/github.com/mattn/go-shellwords/shellwords.go
@@ -232,7 +232,7 @@ loop:
case '\'':
if !doubleQuoted && !dollarQuote {
if singleQuoted {
- got = argSingle
+ got = argQuoted
}
singleQuoted = !singleQuoted
continue