build(deps): bump github.com/containers/storage from 1.15.8 to 1.16.0

Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.15.8 to 1.16.0.
- [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.15.8...v1.16.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
dependabot-preview[bot]
2020-02-19 09:17:16 +00:00
committed by Valentin Rothberg
parent 1bed53b02c
commit 86be569961
29 changed files with 2438 additions and 150 deletions

View File

@ -1,4 +1,4 @@
// +build !windows,go1.6
// +build !windows
package shellwords
@ -10,7 +10,10 @@ import (
)
func shellRun(line, dir string) (string, error) {
shell := os.Getenv("SHELL")
var shell string
if shell = os.Getenv("SHELL"); shell == "" {
shell = "/bin/sh"
}
cmd := exec.Command(shell, "-c", line)
if dir != "" {
cmd.Dir = dir